From e74298efb72cf639a849f320b79e5b3cefab4aa7 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 24 Mar 2020 10:10:56 +0100 Subject: [PATCH] test(e2e): fix tsconfig --- e2e/runner.js | 3 ++- e2e/tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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", -- 2.47.3