add NotificationService method and test case stub

This commit is contained in:
2025-02-12 19:30:11 -08:00
parent 19b08d1c05
commit 3ce72d79be
2 changed files with 18 additions and 0 deletions

View File

@@ -230,4 +230,14 @@ describe("NotificationService", () => {
expect(http2.connect as jest.Mock).toHaveBeenCalledTimes(0);
});
});
describe("getAllScheduledNotificationsForDevice", () => {
it("returns scheduled notifications for the device ID", async () => {
});
it("returns an empty array if there are no notifications", async () => {
});
});
});