From 77c2d88ba242f74a0d04b9d88f405c35e3d19213 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 7 Jan 2025 20:47:26 -0800 Subject: [PATCH] add test cases for getShuttlesBySystemIzd --- test/repositories/ApiBasedRepositoryTests.test.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/repositories/ApiBasedRepositoryTests.test.ts b/test/repositories/ApiBasedRepositoryTests.test.ts index 8511959..05b0faf 100644 --- a/test/repositories/ApiBasedRepositoryTests.test.ts +++ b/test/repositories/ApiBasedRepositoryTests.test.ts @@ -510,3 +510,12 @@ describe("getShuttleById", () => { }); }); +describe("getShuttlesBySystemId", () => { + test("getShuttlesBySystemId returns old data if not expired", async () => { + + }); + + test("getShuttlesBySystemId returns fresh data if expired", async () => { + + }); +})