Skip to content

Commit

Permalink
use browser id instead of session id on test start (via #716)
Browse files Browse the repository at this point in the history
  • Loading branch information
epszaw authored Jul 18, 2023
1 parent 0454523 commit 800d4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/allure-hermione/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ const hermioneAllureReporter = (hermione: Hermione, opts: AllureReportOptions) =
});
hermione.on(hermione.events.TEST_BEGIN, (test) => {
// test hasn't been actually started
if (!test.sessionId) {
if (!test.browserId) {
return;
}

Expand Down

0 comments on commit 800d4af

Please sign in to comment.