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 22cc094 commit f80a978Copy full SHA for f80a978
bin/accessibility-automation/plugin/index.js
@@ -3,8 +3,10 @@ const path = require("node:path");
3
4
const browserstackAccessibility = (on, config) => {
5
let browser_validation = true;
6
- config.env.BROWSERSTACK_LOGS = 'true';
7
- process.env.BROWSERSTACK_LOGS = 'true';
+ if (process.env.BROWSERSTACK_ACCESSIBILITY_DEBUG === 'true') {
+ config.env.BROWSERSTACK_LOGS = 'true';
8
+ process.env.BROWSERSTACK_LOGS = 'true';
9
+ }
10
on('task', {
11
browserstack_log(message) {
12
console.log(message)
0 commit comments