1.2.1 • Published 2 years ago

ava-wrangler-fixture v1.2.1

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Ava Wrangler Fixture

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

Usage

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)
})
1.2.1

2 years ago

1.2.0

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago