From d8ec54919e78e23e53ffb4962febd543c5fb661a Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Thu, 20 Mar 2025 20:22:50 -0700 Subject: [PATCH 1/2] move shuttle away from the stop --- src/loaders/loadTestData.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/loaders/loadTestData.ts b/src/loaders/loadTestData.ts index 543a06c..ad75af4 100644 --- a/src/loaders/loadTestData.ts +++ b/src/loaders/loadTestData.ts @@ -4411,8 +4411,8 @@ const shuttles: IShuttle[] = [ name: "17", id: "1", coordinates: { - latitude: 33.796001, - longitude: -117.8892805, + latitude: 33.788021, + longitude: -117.883698, }, routeId: routes[0].id, systemId: systems[0].id, From 049ea731a37f583e899642284d7002cab4f6a0cc Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Thu, 20 Mar 2025 20:22:58 -0700 Subject: [PATCH 2/2] add message for integration testing --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 3cf1915..b3376c9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -23,6 +23,7 @@ async function main() { const repository = new UnoptimizedInMemoryRepository(); let notificationService: NotificationService; if (process.argv.length > 2 && process.argv[2] == "integration-testing") { + console.log("Using integration testing setup") await loadTestData(repository); notificationService = new NotificationService(repository, false); } else {