Skip to content

Commit 3743b6e

Browse files
removed redundant env
1 parent 8cd4c38 commit 3743b6e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

bin/accessibility-automation/constants.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ exports.ACCESSIBILITY_ENV_VARS = [
66
"ACCESSIBILITY_SCANNERVERSION",
77
"ACCESSIBILITY_COMMANDS_TO_WRAP",
88
"ACCESSIBILITY_BUILD_END_ONLY",
9-
"ACCESSIBILITY_SCRIPTS_TO_RUN",
109
"ACCESSIBILITY_EXTENSION_PATH",
1110
"ACCESSIBILITY_INCLUDETAGSINTESTINGSCOPE",
1211
"ACCESSIBILITY_EXCLUDETAGSINTESTINGSCOPE",

bin/accessibility-automation/helper.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,8 @@ exports.processServerAccessibilityConfig = (responseData) => {
305305
process.env.ACCESSIBILITY_BUILD_END_ONLY = 'false';
306306
}
307307

308-
// Also store scriptsToRun if available
308+
// Log scriptsToRun if available (Scripts class handles the actual storage)
309309
if (commandsToWrapData.scriptsToRun) {
310-
process.env.ACCESSIBILITY_SCRIPTS_TO_RUN = JSON.stringify(commandsToWrapData.scriptsToRun);
311310
logger.debug(`[A11Y] Server provided scripts to run: ${commandsToWrapData.scriptsToRun.join(', ')}`, { scriptsToRun: commandsToWrapData.scriptsToRun });
312311
}
313312
} else {

0 commit comments

Comments
 (0)