From b9810057ce9e60dcf491dfa3e5eca6896c4a8ea1 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Thu, 10 Apr 2025 16:26:41 -0700 Subject: [PATCH] add test cases --- ...pmanTimedApiBasedParkingRepositoryLoader.test.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/loaders/ParkingRepositoryLoaders/ChapmanTimedApiBasedParkingRepositoryLoader.test.ts diff --git a/test/loaders/ParkingRepositoryLoaders/ChapmanTimedApiBasedParkingRepositoryLoader.test.ts b/test/loaders/ParkingRepositoryLoaders/ChapmanTimedApiBasedParkingRepositoryLoader.test.ts new file mode 100644 index 0000000..5ab00b3 --- /dev/null +++ b/test/loaders/ParkingRepositoryLoaders/ChapmanTimedApiBasedParkingRepositoryLoader.test.ts @@ -0,0 +1,13 @@ +import { describe, it } from "@jest/globals"; + +describe("ChapmanTimedApiBasedParkingRepositoryLoader", () => { + describe("fetchAndUpdateParkingStructures", () => { + it("should fetch and update parking successfully", async () => { + + }); + + it("throws ApiResponseError if data is incorrect", async () => { + + }) + }); +});