From bfe92f2e339f3a270c1c2b8875d7a1d0716029ba Mon Sep 17 00:00:00 2001 From: Ryan Lindskog Date: Mon, 19 Nov 2018 14:51:25 -0800 Subject: [PATCH 1/2] Only run tests from the `tests/unit` directory --- config-defaults.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config-defaults.js b/config-defaults.js index 76dcf61..51a1e0e 100644 --- a/config-defaults.js +++ b/config-defaults.js @@ -5,8 +5,8 @@ module.exports = { * then loaded into karma. */ files: [ - 'tests/**/*.spec.js', - 'tests/**/*.spec.ts', + 'tests/unit/**/*.spec.js', + 'tests/unit/**/*.spec.ts', ], /** @@ -24,4 +24,4 @@ module.exports = { * http://karma-runner.github.io/2.0/config/configuration-file.html */ karmaConfig: undefined -} \ No newline at end of file +} From f02b49ebc612e449b0ecaea9fbe5b478f0cc3c6b Mon Sep 17 00:00:00 2001 From: Ryan Lindskog Date: Mon, 19 Nov 2018 14:55:48 -0800 Subject: [PATCH 2/2] cleanup