diff --git a/test/repositories/ApiBasedRepositoryTests.test.ts b/test/repositories/ApiBasedRepositoryTests.test.ts index 180576f..1b75664 100644 --- a/test/repositories/ApiBasedRepositoryTests.test.ts +++ b/test/repositories/ApiBasedRepositoryTests.test.ts @@ -340,4 +340,15 @@ describe("getEtasForStopId", () => { }); }); +describe("updateEtasForSystemIfTTL", () => { + test("updateEtasForSystemIfTTL does nothing if data is not TTL", async () => { + + }); + + test("updateEtasForSystemIfTTL updates all ETA data if data is TTL", async () => { + // For this one, stub out getStopsBySystemId to return mock data + + + }) +});