add second test (base case)

This commit is contained in:
2025-02-12 19:34:19 -08:00
parent b4f1f1b87d
commit bb77aca4ed

View File

@@ -259,7 +259,9 @@ describe("NotificationService", () => {
}); });
it("returns an empty array if there are no notifications", async () => { it("returns an empty array if there are no notifications", async () => {
// Act
const notifications = await notificationService.getAllScheduledNotificationsForDevice("1");
expect(notifications.length).toBe(0);
}); });
}); });
}); });