Skip to content
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.

Commit

Permalink
fix(configuration): Revert removal of testPathDirs
Browse files Browse the repository at this point in the history
This should solve a problem on Windows
  • Loading branch information
mshogren committed Mar 1, 2017
1 parent 86c6170 commit dd5de98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/JestTestRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)}`);

Expand Down

0 comments on commit dd5de98

Please sign in to comment.