Skip to content

Commit 1423553

Browse files
chore: Minor typographical fix (vuejs#5189)
* chore: typographical fix * chore: update test
1 parent 130bcfb commit 1423553

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/@vue/cli/lib/promptModules/__tests__/e2e.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test('cypress', async () => {
1313
check: [0]
1414
},
1515
{
16-
message: 'Pick a E2E testing solution',
16+
message: 'Pick an E2E testing solution',
1717
choices: ['Cypress', 'Nightwatch'],
1818
choose: 0
1919
}
@@ -41,7 +41,7 @@ test('nightwatch', async () => {
4141
check: [0]
4242
},
4343
{
44-
message: 'Pick a E2E testing solution',
44+
message: 'Pick an E2E testing solution',
4545
choices: ['Cypress', 'Nightwatch'],
4646
choose: 1
4747
},

packages/@vue/cli/lib/promptModules/e2e.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = cli => {
1414
name: 'e2e',
1515
when: answers => answers.features.includes('e2e'),
1616
type: 'list',
17-
message: 'Pick a E2E testing solution:',
17+
message: 'Pick an E2E testing solution:',
1818
choices: [
1919
{
2020
name: 'Cypress (Chrome only)',

0 commit comments

Comments
 (0)