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 6b197c5 commit bc66fa1Copy full SHA for bc66fa1
test/e2e/runner.js
@@ -43,9 +43,9 @@ if (args.indexOf('-c') < 0) {
43
// check if multiple envs are provided. The way Nightwatch works
44
// requires to explicitely provide the conf
45
const envs = args[args.indexOf('-e') + 1]
46
- if (!envs || envs.indexOf(',') > -1) {
+ if (envs && envs.indexOf(',') > -1) {
47
console.warn(
48
- `Specify the conf with providing multiple browsers:\n$ yarn run test:e2e ${args.join(
+ `Specify the conf when providing multiple browsers:\n$ yarn run test:e2e ${args.join(
49
' '
50
)} -c ${NW_CONFIG}`
51
)
0 commit comments