Skip to content

Commit

Permalink
chore: fixed bun test
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed May 19, 2024
1 parent 984c11c commit 1e22ae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ describe("Worker tests", () => {
},
});
const res = await worker.fetch(req, {
WEBHOOK_SECRET: process.env.WEBHOOK_SECRET,
WEBHOOK_SECRET: "webhook-secret",
APP_ID: process.env.APP_ID,
PRIVATE_KEY: process.env.PRIVATE_KEY,
PRIVATE_KEY: "private-key",
PLUGIN_CHAIN_STATE: {} as KVNamespace,
});
expect(res.status).toEqual(200);
Expand Down

0 comments on commit 1e22ae8

Please sign in to comment.