File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,11 @@ function getIntParam(urlParams, key) {
55
55
if ( typeof ( URLSearchParams ) !== "undefined" ) {
56
56
const urlParameters = new URLSearchParams ( window . location . search ) ;
57
57
shouldReport = urlParameters . has ( 'report' ) && urlParameters . get ( 'report' ) . toLowerCase ( ) == 'true' ;
58
- if ( shouldReport )
58
+ globalThis . startDelay = getIntParam ( urlParameters , "startDelay" ) ;
59
+ if ( shouldReport && ! globalThis . startDelay )
59
60
globalThis . startDelay = 4000 ;
60
61
if ( urlParameters . has ( 'test' ) )
61
62
customTestList = urlParameters . getAll ( "test" ) ;
62
- globalThis . startDelay = getIntParam ( urlParameters , "startDelay" ) ;
63
63
globalThis . testIterationCount = getIntParam ( urlParameters , "iterationCount" ) ;
64
64
globalThis . testWorstCaseCount = getIntParam ( urlParameters , "worstCaseCount" ) ;
65
65
}
You can’t perform that action at this time.
0 commit comments