We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd8cf3 commit f5c814eCopy full SHA for f5c814e
test/index.test.ts
@@ -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