We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0179184 commit c9c4f3dCopy full SHA for c9c4f3d
params.js
@@ -75,8 +75,12 @@ class Params {
75
this.customPostIterationCode = this._parseStringParam(sourceParams, "customPostIterationCode");
76
77
this.startDelay = this._parseIntParam(sourceParams, "startDelay", 0);
78
- if (this.report && !this.startDelay)
79
- this.startDelay = 4000;
+ if (!this.startDelay) {
+ if (this.report)
80
+ this.startDelay = 4000;
81
+ if (this.startAutomatically)
82
+ this.startDelay = 100;
83
+ }
84
85
for (const paramKey of ["tag", "tags", "test", "tests"]) {
86
this.testList = this._parseTestListParam(sourceParams, paramKey);
0 commit comments