Skip to content

Commit 670eba6

Browse files
authored
karma.base.js: replace "BROWSER" with "BROWSERS" in log messages, to reflect the actual name of the environment variable (see #8491) (#8875)
1 parent dcc62c0 commit 670eba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/karma.base.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function determineBrowsers() {
3131
);
3232
if (validBrowsers.length === 0) {
3333
console.error(
34-
`The \'BROWSER\' environment variable was set, but no supported browsers were listed. The supported browsers are ${JSON.stringify(
34+
`The \'BROWSERS\' environment variable was set, but no supported browsers were listed. The supported browsers are ${JSON.stringify(
3535
supportedBrowsers
3636
)}.`
3737
);
@@ -41,7 +41,7 @@ function determineBrowsers() {
4141
}
4242
} else {
4343
console.log(
44-
"The 'BROWSER' environment variable is undefined. Defaulting to 'ChromeHeadless'."
44+
"The 'BROWSERS' environment variable is undefined. Defaulting to 'ChromeHeadless'."
4545
);
4646
return ['ChromeHeadless'];
4747
}

0 commit comments

Comments
 (0)