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 b168cec commit 0e1d9abCopy full SHA for 0e1d9ab
test/download-browsers.js
@@ -1,9 +1,9 @@
1
const {buildDriver} = require('./webdriver');
2
// Download the browser(s).
3
async function download() {
4
- if (process.env.browserA && process.env.browserB) {
5
- (await buildDriver(process.env.browserA)).quit();
6
- (await buildDriver(process.env.browserB)).quit();
+ if (process.env.BROWSER_A && process.env.BROWSER_B) {
+ (await buildDriver(process.env.BROWSER_A)).quit();
+ (await buildDriver(process.env.BROWSER_B)).quit();
7
} else {
8
(await buildDriver()).quit();
9
}
0 commit comments