Skip to content

Commit f5c814e

Browse files
committed
test: add basic test
1 parent 3bd8cf3 commit f5c814e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

test/index.test.ts

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import {
2+
createExecutionContext,
3+
env,
4+
waitOnExecutionContext,
5+
} from "cloudflare:test";
6+
import { expect, it } from "vitest";
7+
import worker from "../src";
8+
9+
it("respond with a 404", async () => {
10+
const request = new Request("https://mojis.dev/not-found");
11+
const ctx = createExecutionContext();
12+
const response = await worker.fetch(request, env, ctx);
13+
await waitOnExecutionContext(ctx);
14+
15+
expect(response.status).toBe(404);
16+
expect(await response.json()).toEqual({
17+
message: "Not found",
18+
status: 404,
19+
path: "/not-found",
20+
timestamp: expect.any(String),
21+
});
22+
});

0 commit comments

Comments
 (0)