superfetch
HTTP Server testing library inspired by node-supertest-fetch.
I'm building Flash - a service to deploy websites and apps on the new decentralized stack.
Example
import { describe, it, run } from 'https://deno.land/x/tincan/mod.ts'
import { makeFetch } from 'https://x.nest.land/superfetch@1.0.0/mod.ts'
import type { Handler } from 'https://deno.land/std@0.182.0/http/server.ts'
describe('makeFetch', () => {
it('should work with HTTP handler', async () => {
const handler: Handler = (res) => new Response('Hello World')
const fetch = makeFetch(s)
const res = await fetch('/')
res.expect('Hello World')
})
run()