This commit is contained in:
2025-11-26 17:03:29 +01:00
parent ff3528e5ef
commit fef75008d8
147 changed files with 112370 additions and 5162 deletions

View File

@@ -11,7 +11,7 @@ export interface IFixtureServer {
/**
* Step number to fixture file mapping.
* Steps 2-18 map to the corresponding HTML fixture files.
* Steps 2-17 map to the corresponding HTML fixture files.
*/
const STEP_TO_FIXTURE: Record<number, string> = {
2: 'step-02-hosted-racing.html',
@@ -19,18 +19,17 @@ const STEP_TO_FIXTURE: Record<number, string> = {
4: 'step-04-race-information.html',
5: 'step-05-server-details.html',
6: 'step-06-set-admins.html',
7: 'step-07-add-admin.html',
8: 'step-08-time-limits.html',
9: 'step-09-set-cars.html',
10: 'step-10-add-car.html',
11: 'step-11-set-car-classes.html',
12: 'step-12-set-track.html',
13: 'step-13-add-track.html',
14: 'step-14-track-options.html',
15: 'step-15-time-of-day.html',
16: 'step-16-weather.html',
17: 'step-17-race-options.html',
18: 'step-18-track-conditions.html',
7: 'step-07-time-limits.html', // Time Limits wizard step
8: 'step-08-set-cars.html', // Set Cars wizard step
9: 'step-09-add-car-modal.html', // Add Car modal
10: 'step-10-set-car-classes.html', // Set Car Classes
11: 'step-11-set-track.html', // Set Track wizard step (CORRECTED)
12: 'step-12-add-track-modal.html', // Add Track modal
13: 'step-13-track-options.html',
14: 'step-14-time-of-day.html',
15: 'step-15-weather.html',
16: 'step-16-race-options.html',
17: 'step-17-track-conditions.html',
};
export class FixtureServer implements IFixtureServer {