add integration test setup for parking data

This commit is contained in:
2025-04-16 17:27:13 -07:00
parent 02e440773a
commit 7e74748139
4 changed files with 51 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
import { InterchangeSystemBuilderArguments } from "../entities/InterchangeSystem";
import { ChapmanApiBasedParkingRepositoryLoader } from "./parking/ChapmanApiBasedParkingRepositoryLoader";
export const supportedIntegrationTestSystems: InterchangeSystemBuilderArguments[] = [
{
id: "1",
name: "Chapman University",
passioSystemId: "263",
parkingSystemId: ChapmanApiBasedParkingRepositoryLoader.id,
},
];