add test cases for updateEtasForSystemIfTTL

This commit is contained in:
2025-01-07 16:16:19 -08:00
parent 2e37249bd1
commit b22aeef8cf

View File

@@ -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
})
});