Skip to content

Commit

Permalink
chore: fixed jest
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Oct 2, 2024
1 parent fdd7cd2 commit e8be4ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe("Plugin tests", () => {

it("Should serve the manifest file", async () => {
const worker = (await import("../src/worker")).default;
const response = await worker.fetch(new Request("http://localhost/manifest.json"), {});
const response = await worker.fetch(new Request("http://localhost/manifest"), {});
const content = await response.json();
expect(content).toEqual(manifest);
});
Expand Down

0 comments on commit e8be4ef

Please sign in to comment.