add tests for getShuttleById

This commit is contained in:
2025-01-07 20:24:15 -08:00
parent 4ba16bb7c2
commit 792476a59b

View File

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