From 4b961a1770d753ef1cef93882a61c248a47d1d80 Mon Sep 17 00:00:00 2001 From: Camillo Bruni Date: Tue, 14 Oct 2025 18:51:34 +0200 Subject: [PATCH] support startAutomatically --- params.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/params.js b/params.js index 0411f0cb..8645fa19 100644 --- a/params.js +++ b/params.js @@ -75,8 +75,12 @@ class Params { this.customPostIterationCode = this._parseStringParam(sourceParams, "customPostIterationCode"); this.startDelay = this._parseIntParam(sourceParams, "startDelay", 0); - if (this.report && !this.startDelay) - this.startDelay = 4000; + if (!this.startDelay) { + if (this.report) + this.startDelay = 4000; + if (this.startAutomatically) + this.startDelay = 100; + } for (const paramKey of ["tag", "tags", "test", "tests"]) this.testList = this._parseTestListParam(sourceParams, paramKey);