-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
/
Copy pathe2e.js
37 lines (35 loc) · 998 Bytes
/
e2e.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = cli => {
cli.injectFeature({
name: 'E2E Testing',
value: 'e2e',
short: 'E2E',
description: 'Add an End-to-End testing solution to the app like Cypress or Nightwatch',
link: 'https://github.com/vuejs/vue-cli/tree/dev/docs#e2e-testing',
plugins: ['e2e-cypress', 'e2e-nightwatch']
})
cli.injectPrompt({
name: 'e2e',
when: answers => answers.features.includes('e2e'),
type: 'list',
message: 'Pick a E2E testing solution:',
choices: [
{
name: 'Cypress (Chrome only)',
value: 'cypress',
short: 'Cypress'
},
{
name: 'Nightwatch (Selenium-based)',
value: 'nightwatch',
short: 'Nightwatch'
}
]
})
cli.onPromptComplete((answers, options) => {
if (answers.e2e === 'cypress') {
options.plugins['@vue/cli-plugin-e2e-cypress'] = {}
} else if (answers.e2e === 'nightwatch') {
options.plugins['@vue/cli-plugin-e2e-nightwatch'] = {}
}
})
}