From 3b4b7dc12531d625e15aa7031ae98076b3ddcd58 Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Sun, 10 Jun 2018 15:10:10 -0700 Subject: [PATCH] Fix unittests config --- src/testRunner/tsconfig.json | 1 + src/unittests/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/testRunner/tsconfig.json b/src/testRunner/tsconfig.json index fee848e39ff..cfde1107387 100644 --- a/src/testRunner/tsconfig.json +++ b/src/testRunner/tsconfig.json @@ -19,6 +19,7 @@ { "path": "../services", "prepend": true }, { "path": "../server", "prepend": true }, { "path": "../harness", "prepend": true }, + { "path": "../unittests", "prepend": true }, { "path": "../typingsInstallerCore", "prepend": true } ], diff --git a/src/unittests/tsconfig.json b/src/unittests/tsconfig.json index 683812ba029..95c8f478994 100644 --- a/src/unittests/tsconfig.json +++ b/src/unittests/tsconfig.json @@ -19,5 +19,5 @@ { "path": "../typingsInstallerCore" }, { "path": "../harness" } ], - "include": ["**/*.ts"] + "include": ["*.ts", "**/*.ts"] }