We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c2c3a commit ccd7409Copy full SHA for ccd7409
front/tests/utils/setup-utils.ts
@@ -177,8 +177,8 @@ export async function createDataForTests(): Promise<void> {
177
178
const stdcmEnvironment = {
179
infra_id: smallInfra.id,
180
- search_window_begin: '2024-10-17T00:00:01+02:00',
181
- search_window_end: '2024-10-18T23:59:59+02:00',
+ search_window_begin: new Date('2024-10-17T00:00:01+02:00').toISOString(),
+ search_window_end: new Date('2024-10-18T23:59:59+02:00').toISOString(),
182
timetable_id: scenarioTrainSchedule.timetable_id,
183
} as StdcmSearchEnvironment;
184
0 commit comments