Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
gstamac committed Aug 7, 2018
2 parents 2732054 + ded6a14 commit b0df658
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Bug-fixes within the same version aren't needed
## Master
* Prevent ANSI escape codes from appearing in test messages - seanpoulter
* Your message here - name
-->
Expand Down
7 changes: 5 additions & 2 deletions src/JestProcessManagement/JestProcess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ export class JestProcess {
this.stopRequested = false
let exited = false

const useShell = platform() === 'win32'
this.runner = new Runner(this.projectWorkspace, { shell: useShell })
const options = {
noColor: true,
shell: platform() === 'win32',
}
this.runner = new Runner(this.projectWorkspace, options)

this.restoreJestEvents()

Expand Down

0 comments on commit b0df658

Please sign in to comment.