Supabase
Testing Supabase Edge Functions with Deno
Supabase Edge Functions run on Deno Deploy — a V8-isolate runtime that is fast to cold-start and strict about permissions.
Supabase
Supabase Edge Functions run on Deno Deploy — a V8-isolate runtime that is fast to cold-start and strict about permissions.
Testing
Deno ships with a built-in test runner. No configuration, no separate test framework, no package.json scripts to set up. Run deno test and you're testing.
Testing
Deno's standard library provides @std/mock for test doubles — spies, stubs, and fake timers.
Testing
Deno KV is a key-value store built into the Deno runtime. In development, it uses SQLite. In Deno Deploy, it uses FoundationDB.
Testing
Integration tests verify that your Deno application's components work together — that HTTP routes return the right responses, that database queries return the right data, that error handling works end-to-end. They bridge the gap between unit tests (which verify logic in isolation) and E2E tests (which run
Testing
Deno Fresh is a full-stack framework built on Deno, Preact, and server-side rendering.