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); }); }); });