interface LongLoadConstructorProps {
    maximumLoadTime: number;
    minimumLoadTime: number;
    numberOfLoads?: number;
    runInProduction: boolean;
}

Properties - LongLoad

maximumLoadTime: number

The shortest time (in milliseconds) that a given load should take

10

time-milliseconds

5000

minimumLoadTime: number

The shortest time (in milliseconds) that a given load should take

10

time-milliseconds

500

numberOfLoads?: number

The number of loading processes to simulate

10

10

runInProduction: boolean

If the long loading process should occur in production builds (in addition to development builds)

10

false