From dd5de980760ba41bb8e158452c9e0470597fc553 Mon Sep 17 00:00:00 2001 From: mshogren Date: Wed, 1 Mar 2017 11:29:18 -0700 Subject: [PATCH] fix(configuration): Revert removal of testPathDirs This should solve a problem on Windows --- src/JestTestRunner.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/JestTestRunner.ts b/src/JestTestRunner.ts index bb71c28..900ddb8 100644 --- a/src/JestTestRunner.ts +++ b/src/JestTestRunner.ts @@ -40,7 +40,8 @@ export default class JestTestRunner extends EventEmitter implements TestRunner { log.debug(`Received options ${JSON.stringify(options)}`); this.options = _.assign(DEFAULT_OPTIONS, { - rootDir: process.cwd() + rootDir: process.cwd(), + testPathDirs: [process.cwd()] }); log.debug(`Using options ${JSON.stringify(this.options)}`);