From bb77aca4ed23e2a1ae6cfd8732f524edb7eaccc6 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 12 Feb 2025 19:34:19 -0800 Subject: [PATCH] add second test (base case) --- test/services/NotificationServiceTests.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/services/NotificationServiceTests.test.ts b/test/services/NotificationServiceTests.test.ts index d7ecefa..8517727 100644 --- a/test/services/NotificationServiceTests.test.ts +++ b/test/services/NotificationServiceTests.test.ts @@ -259,7 +259,9 @@ describe("NotificationService", () => { }); it("returns an empty array if there are no notifications", async () => { - + // Act + const notifications = await notificationService.getAllScheduledNotificationsForDevice("1"); + expect(notifications.length).toBe(0); }); }); });