We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 655ab3f commit ded6a14Copy full SHA for ded6a14
2 files changed
CHANGELOG.md
@@ -5,6 +5,7 @@ Bug-fixes within the same version aren't needed
5
6
## Master
7
8
+* Prevent ANSI escape codes from appearing in test messages - seanpoulter
9
* Your message here - name
10
11
-->
src/JestProcessManagement/JestProcess.ts
@@ -18,8 +18,11 @@ export class JestProcess {
18
this.stopRequested = false
19
let exited = false
20
21
- const useShell = platform() === 'win32'
22
- this.runner = new Runner(this.projectWorkspace, { shell: useShell })
+ const options = {
+ noColor: true,
23
+ shell: platform() === 'win32',
24
+ }
25
+ this.runner = new Runner(this.projectWorkspace, options)
26
27
this.restoreJestEvents()
28
0 commit comments