We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07483f3 commit b9a7aa6Copy full SHA for b9a7aa6
test/integration-tests/testexplorer/utilities.ts
@@ -143,7 +143,12 @@ export function assertTestResults(
143
},
144
{
145
passed: (state.passed ?? []).sort(),
146
- failed: (state.failed ?? []).sort(),
+ failed: (state.failed ?? [])
147
+ .map(({ test, issues }) => ({
148
+ test,
149
+ issues: issues.map(message => stripAnsi(message)),
150
+ }))
151
+ .sort(),
152
skipped: (state.skipped ?? []).sort(),
153
errored: (state.errored ?? []).sort(),
154
unknown: 0,
0 commit comments