Files
project-inter-server/test/loaders/ParkingRepositoryLoaders/ChapmanTimedApiBasedParkingRepositoryLoaderTests.test.ts
2025-04-10 16:27:15 -07:00

14 lines
331 B
TypeScript

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