Skip to content

Commit 1aee063

Browse files
committed
fix: correctly report test names and status
1 parent 6e319c7 commit 1aee063

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reporter/reporter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ export function SaucelabsReporter(logger, browserMap: BrowserMap) {
3737
return;
3838
}
3939

40-
const status = result.success ? '✅' : '❌'
40+
const status = result.success ? '✅' : result.skipped ? '➖' : '❌';
4141

4242
browserData.results.push({
4343
status: 'info',
44-
message: `${status} ${result.fullName}`,
44+
message: `${status} ${result.fullName || result.description}`,
4545
screenshot: null
4646
})
4747

0 commit comments

Comments
 (0)