From 520188ae470da4cc2bb3b77c4c2ee4f0909a2ab1 Mon Sep 17 00:00:00 2001 From: pitoi Date: Tue, 14 Apr 2026 22:18:16 +0000 Subject: [PATCH] Generated with Hive: Fix notification test to expect SENT status for feature deployed production --- .../webhook-feature-deployed-production-notification.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/__tests__/integration/api/github/webhook-feature-deployed-production-notification.test.ts b/src/__tests__/integration/api/github/webhook-feature-deployed-production-notification.test.ts index b0a7550ba7..74241cbb33 100644 --- a/src/__tests__/integration/api/github/webhook-feature-deployed-production-notification.test.ts +++ b/src/__tests__/integration/api/github/webhook-feature-deployed-production-notification.test.ts @@ -206,7 +206,8 @@ describe("GitHub Webhook — FEATURE_DEPLOYED_PRODUCTION notification", () => { const record = await waitForNotification({ notificationType: NotificationTriggerType.FEATURE_DEPLOYED_PRODUCTION, featureId: feature.id, - }); + status: NotificationTriggerStatus.SENT, + }, 8000); expect(record).not.toBeNull(); expect(record!.targetUserId).toBe(testSetup.user.id);