From 08e645318c6844a9f882c6d61501abf63bb4318d Mon Sep 17 00:00:00 2001 From: Bart Ledoux Date: Fri, 2 Mar 2018 16:36:51 -0600 Subject: [PATCH] fix(TypeScript e2e): end to end test(s) folder There was one more typo with the "test" folder regarding e2e. It was preventing cypress from running properly. --- packages/@vue/cli-plugin-typescript/generator/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@vue/cli-plugin-typescript/generator/index.js b/packages/@vue/cli-plugin-typescript/generator/index.js index d86b175aa1..5435e25b05 100644 --- a/packages/@vue/cli-plugin-typescript/generator/index.js +++ b/packages/@vue/cli-plugin-typescript/generator/index.js @@ -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) {