Skip to content

Commit

Permalink
refactor: Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi committed Aug 12, 2024
1 parent 2073b0f commit 518a145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/test/integration/webhooks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('WebhookServer', () => {

describe('CORS', () => {
const corsOrigin = 'https://example.com';
const activeWebhooks = mockInstance(LiveWebhooks);
const liveWebhooks = mockInstance(LiveWebhooks);
const testWebhooks = mockInstance(TestWebhooks);
mockInstance(WaitingWebhooks);
mockInstance(WaitingForms);
Expand All @@ -35,7 +35,7 @@ describe('WebhookServer', () => {
});

const tests = [
['webhook', activeWebhooks],
['webhook', liveWebhooks],
['webhookTest', testWebhooks],
// TODO: enable webhookWaiting & waitingForms after CORS support is added
// ['webhookWaiting', waitingWebhooks],
Expand Down

0 comments on commit 518a145

Please sign in to comment.