Skip to content

Commit

Permalink
fix(e2e): end to end test(s) folder (#923)
Browse files Browse the repository at this point in the history
There was one more typo with the "test" folder regarding
e2e. It was preventing cypress from running properly.
  • Loading branch information
elevatebart authored and yyx990803 committed Mar 2, 2018
1 parent 31cdc86 commit 852d26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@vue/cli-plugin-typescript/generator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ module.exports = (api, {
// delete all js files that have a ts file of the same name
// and simply rename other js files to ts
const jsRE = /\.js$/
const excludeRE = /^test\/e2e\/|\.config\.js$/
const excludeRE = /^tests\/e2e\/|\.config\.js$/
const convertLintFlags = require('../lib/convertLintFlags')
api.postProcessFiles(files => {
for (const file in files) {
Expand Down

0 comments on commit 852d26c

Please sign in to comment.