remove cancelAllNotifications method (one less method to test

This commit is contained in:
2025-02-03 23:50:00 -08:00
parent 629fe4dddd
commit 4a63929cc1
2 changed files with 0 additions and 10 deletions

View File

@@ -225,8 +225,4 @@ export class NotificationService {
} }
return this.deviceIdsToDeliverTo[tuple.toString()].includes(deviceId); return this.deviceIdsToDeliverTo[tuple.toString()].includes(deviceId);
} }
public cancelAllNotifications(deviceId: string) {
}
} }

View File

@@ -223,10 +223,4 @@ describe("NotificationService", () => {
expect(fetch as jest.Mock).toHaveBeenCalledTimes(0); expect(fetch as jest.Mock).toHaveBeenCalledTimes(0);
}); });
}); });
describe("cancelAllNotifications", () => {
it("clears all notifications scheduled to be sent", async () => {
});
})
}); });