From f26d51747f24ea24b4f3123985d92458c7b7d369 Mon Sep 17 00:00:00 2001 From: mulahasanovic Date: Tue, 18 Nov 2025 16:55:15 +0100 Subject: [PATCH] fix(sasjs-tests): duplicate test suite --- sasjs-tests/src/core/TestRunner.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sasjs-tests/src/core/TestRunner.ts b/sasjs-tests/src/core/TestRunner.ts index 21ba4a0..0adbefe 100644 --- a/sasjs-tests/src/core/TestRunner.ts +++ b/sasjs-tests/src/core/TestRunner.ts @@ -34,8 +34,7 @@ export class TestRunner { for (let i = 0; i < this.testSuites.length; i++) { const suite = this.testSuites[i] - const completedSuite = await this.runTestSuite(suite, i, onUpdate) - this.completedTestSuites.push(completedSuite) + await this.runTestSuite(suite, i, onUpdate) } this.isRunning = false