diff --git a/test/repositories/ApiBasedRepositoryTests.test.ts b/test/repositories/ApiBasedRepositoryTests.test.ts index 26e749e..fb30cdc 100644 --- a/test/repositories/ApiBasedRepositoryTests.test.ts +++ b/test/repositories/ApiBasedRepositoryTests.test.ts @@ -331,3 +331,17 @@ describe("updateEtasForSystemIfTTL", () => { }); }); +describe("getShuttleById", () => { + test("getShuttleById returns null if unseeded cache", async () => { + + }); + + test("getShuttleById returns old data if not expired", async () => { + + }); + + test("getShuttleById returns fresh data if expired", async () => { + + }); +}); +