Skip to content

Commit

Permalink
ci: do not forward browser logs into the console on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Sep 30, 2024
1 parent e9e178e commit f34e0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ export async function setupBrowser() {
});
browser.logs = [];
function addLog(str) {
if (process.env.DEBUG !== undefined) {
if (process.env.BROWSER_LOGS !== undefined) {
console.log(str);
}
browser.logs.push(str);
Expand Down

0 comments on commit f34e0c2

Please sign in to comment.