Skip to content

Commit

Permalink
fix: do not return after first disabled test (#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowusr authored Aug 2, 2024
1 parent f05801e commit 52b83be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gui/tool-runner/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class ToolRunner {

for (const test of this._ensureTestCollection().tests) {
if (test.disabled || test.silentlySkipped) {
return;
continue;
}

// TODO: remove toString after publish major version
Expand Down

0 comments on commit 52b83be

Please sign in to comment.