From: Eduardo San Martin Morote Date: Tue, 24 Mar 2020 09:10:56 +0000 (+0100) Subject: test(e2e): fix tsconfig X-Git-Tag: v4.0.0-alpha.4~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e74298efb72cf639a849f320b79e5b3cefab4aa7;p=thirdparty%2Fvuejs%2Frouter.git test(e2e): fix tsconfig --- diff --git a/e2e/runner.js b/e2e/runner.js index c9465735..983c5472 100644 --- a/e2e/runner.js +++ b/e2e/runner.js @@ -12,7 +12,8 @@ * * If you are already running the dev server with `yarn run serve`, you can pass the --dev option to avoid launching the server * $ node e2e/runner.js --dev - * **Make sure to pass the option at the end** + * **Make sure to pass the option at the end:** + * $ node e2e/runner.js e2e/specs/basic.js --dev * * __For maintainers only__ * You can trigger tests on Browserstack on other browsers by passing the --local option diff --git a/e2e/tsconfig.json b/e2e/tsconfig.json index 95aceb4d..dd0fee87 100644 --- a/e2e/tsconfig.json +++ b/e2e/tsconfig.json @@ -1,5 +1,5 @@ { - "include": ["index.ts", "*/*ts", "../src/global.d.ts"], + "include": ["index.ts", "*/*.ts", "../src/global.d.ts"], "compilerOptions": { "target": "es5", "module": "commonjs",