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