Skip to content

Commit 0447c40

Browse files
authored
fix(e2e-nightwatch): check for correct flag name
flag is documented as `--use-selenium` but we checked for `args['with-selenium']` fix #5015
1 parent 4087220 commit 0447c40

File tree

1 file changed

+1
-1
lines changed
  • packages/@vue/cli-plugin-e2e-nightwatch

1 file changed

+1
-1
lines changed

packages/@vue/cli-plugin-e2e-nightwatch/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = (api, options) => {
6565
rawArgs.push('--env', 'chrome')
6666
}
6767

68-
if (args['with-selenium']) {
68+
if (args['use-selenium']) {
6969
process.env.VUE_NIGHTWATCH_USE_SELENIUM = '1'
7070
}
7171

0 commit comments

Comments
 (0)