File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 21
21
custom matchers. ([ #5162 ] ( https://github.com/facebook/jest/pull/5162 ) )
22
22
* ` [pretty-format] ` Pretty format for DOMStringMap and NamedNodeMap
23
23
([ #5233 ] ( https://github.com/facebook/jest/pull/5233 ) )
24
+ * ` [jest-cli] ` Use a better console-clearing string on Windows
25
+ ([ #5251 ] ( https://github.com/facebook/jest/pull/5251 ) )
24
26
25
27
### Features
26
28
Original file line number Diff line number Diff line change 9
9
10
10
const isWindows = process . platform === 'win32' ;
11
11
12
- export const CLEAR = isWindows ? '\x1Bc ' : '\x1B[2J\x1B[3J\x1B[H' ;
12
+ export const CLEAR = isWindows ? '\x1B[2J\x1B[0f ' : '\x1B[2J\x1B[3J\x1B[H' ;
13
13
14
14
export const KEYS = {
15
15
A : '61' ,
You can’t perform that action at this time.
0 commit comments