Skip to content

Commit 2431a29

Browse files
committed
testing: fix success indictor showing up before completion
Fixes microsoft#144652
1 parent 0a2707b commit 2431a29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/testing/common/testingStates.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export const statePriority: { [K in TestResultState]: number } = {
1616
[TestResultState.Running]: 6,
1717
[TestResultState.Errored]: 5,
1818
[TestResultState.Failed]: 4,
19-
[TestResultState.Passed]: 3,
20-
[TestResultState.Queued]: 2,
19+
[TestResultState.Queued]: 3,
20+
[TestResultState.Passed]: 2,
2121
[TestResultState.Unset]: 1,
2222
[TestResultState.Skipped]: 0,
2323
};

0 commit comments

Comments
 (0)