Skip to content

Commit 52b83be

Browse files
authored
fix: do not return after first disabled test (#586)
1 parent f05801e commit 52b83be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/gui/tool-runner/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ export class ToolRunner {
335335

336336
for (const test of this._ensureTestCollection().tests) {
337337
if (test.disabled || test.silentlySkipped) {
338-
return;
338+
continue;
339339
}
340340

341341
// TODO: remove toString after publish major version

0 commit comments

Comments
 (0)