Skip to content

Commit 852d26c

Browse files
elevatebartyyx990803
authored andcommitted
fix(e2e): end to end test(s) folder (#923)
There was one more typo with the "test" folder regarding e2e. It was preventing cypress from running properly.
1 parent 31cdc86 commit 852d26c

File tree

1 file changed

+1
-1
lines changed
  • packages/@vue/cli-plugin-typescript/generator

1 file changed

+1
-1
lines changed

packages/@vue/cli-plugin-typescript/generator/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ module.exports = (api, {
112112
// delete all js files that have a ts file of the same name
113113
// and simply rename other js files to ts
114114
const jsRE = /\.js$/
115-
const excludeRE = /^test\/e2e\/|\.config\.js$/
115+
const excludeRE = /^tests\/e2e\/|\.config\.js$/
116116
const convertLintFlags = require('../lib/convertLintFlags')
117117
api.postProcessFiles(files => {
118118
for (const file in files) {

0 commit comments

Comments
 (0)