An open API service indexing awesome lists of open source software.

https://github.com/seamapi/ava-wrangler-fixture

Easily test your Cloudflare Worker projects using ava and typescript/javascript
https://github.com/seamapi/ava-wrangler-fixture

Last synced: 5 months ago
JSON representation

Easily test your Cloudflare Worker projects using ava and typescript/javascript

Awesome Lists containing this project

README

        

# Ava Wrangler Fixture

Easily test your cloudflare worker projects using ava and typescript/javascript

## Usage

```ts
import test from "ava"
import getTestServer from "ava-wrangler-fixture"

test("test server should work", async (t) => {
const { axios } = await getTestServer(t)

const res = await axios.post("/", { hello: "world!" })

t.is(res.status, 200)
})
```