Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Changed the order of the report #27260

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/e2e/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,6 @@ async function withFixtures(options, testSuite) {
throw new Error(errorsAndExceptions);
}

// At this point the suite has executed successfully, so we can log out a success message
// (Note: a Chrome browser error will unfortunately pop up after this success message)
console.log(`\nSuccess on testcase: '${title}'\n`);

// Evaluate whether any new hosts received network requests during E2E test
// suite execution. If so, fail the test unless the
// --update-privacy-snapshot was specified. In that case, update the
Expand Down Expand Up @@ -271,6 +267,10 @@ async function withFixtures(options, testSuite) {
);
}
}

// At this point the suite has executed successfully, so we can log out a success message
// (Note: a Chrome browser error will unfortunately pop up after this success message)
console.log(`\nSuccess on testcase: '${title}'\n`);
} catch (error) {
failed = true;
if (webDriver) {
Expand Down