update shuttle test data for integration tests

This commit is contained in:
2025-04-07 12:41:04 -07:00
parent ea46115b86
commit bed2fbc7c3

View File

@@ -4375,11 +4375,13 @@ const orderedStopsForRedRoute: IOrderedStop[] = [
routeId: routes[0].id, routeId: routes[0].id,
stopId: stops[0].id, stopId: stops[0].id,
position: 1, position: 1,
systemId: "1",
}, },
{ {
routeId: routes[0].id, routeId: routes[0].id,
stopId: stops[2].id, stopId: stops[2].id,
position: 2, position: 2,
systemId: "1",
}, },
]; ];
@@ -4388,16 +4390,19 @@ const orderedStopsForTealRoute: IOrderedStop[] = [
routeId: routes[1].id, routeId: routes[1].id,
stopId: stops[0].id, stopId: stops[0].id,
position: 1, position: 1,
systemId: "1",
}, },
{ {
routeId: routes[1].id, routeId: routes[1].id,
stopId: stops[1].id, stopId: stops[1].id,
position: 2, position: 2,
systemId: "1",
}, },
{ {
routeId: routes[1].id, routeId: routes[1].id,
stopId: stops[2].id, stopId: stops[2].id,
position: 2, position: 2,
systemId: "1",
}, },
] ]
@@ -4436,21 +4441,25 @@ const etas: IEta[] = [
stopId: stops[0].id, stopId: stops[0].id,
shuttleId: shuttles[0].id, shuttleId: shuttles[0].id,
secondsRemaining: 12.023, secondsRemaining: 12.023,
systemId: "1",
}, },
{ {
stopId: stops[2].id, stopId: stops[2].id,
shuttleId: shuttles[0].id, shuttleId: shuttles[0].id,
secondsRemaining: 600.123, secondsRemaining: 600.123,
systemId: "1",
}, },
{ {
stopId: stops[2].id, stopId: stops[2].id,
shuttleId: shuttles[1].id, shuttleId: shuttles[1].id,
secondsRemaining: 172.015, secondsRemaining: 172.015,
systemId: "1",
}, },
{ {
stopId: stops[0].id, stopId: stops[0].id,
shuttleId: shuttles[1].id, shuttleId: shuttles[1].id,
secondsRemaining: 710.152, secondsRemaining: 710.152,
systemId: "1",
} }
]; ];