From a6d4b40fba4fa42b3f04041ccb402666af92f34b Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 16 Apr 2025 16:28:09 -0700 Subject: [PATCH] add test cases for endpoints --- test/resolvers/SystemResolverTests.test.ts | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/test/resolvers/SystemResolverTests.test.ts b/test/resolvers/SystemResolverTests.test.ts index 4333fef..870f2a7 100644 --- a/test/resolvers/SystemResolverTests.test.ts +++ b/test/resolvers/SystemResolverTests.test.ts @@ -308,4 +308,28 @@ describe("SystemResolvers", () => { expect(shuttles.length === expectedShuttles.length); }); }); + + describe("parkingStructures", () => { + it("gets parking structures associated with the system id", async () => { + + }); + + it("returns a blank array if there are no parking structures", async () => { + + }); + + it("returns null if there is no parking data available", async () => { + + }); + }); + + describe("parkingStructure", () => { + it("returns the correct parking structure given the id", async () => { + + }); + + it("returns null if there is no matching parking structure", async () => { + + }); + }); });