Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Meta
create-react-app
Commits
a13a65f1
Commit
a13a65f1
authored
8 years ago
by
Dan Abramov
Committed by
GitHub
8 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Clear scrollback in test mode (#1237)
parent
a8dedf32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/react-scripts/scripts/test.js
+12
-0
packages/react-scripts/scripts/test.js
with
12 additions
and
0 deletions
+12
-0
packages/react-scripts/scripts/test.js
+
12
-
0
View file @
a13a65f1
...
...
@@ -26,6 +26,18 @@ if (!process.env.CI && argv.indexOf('--coverage') < 0) {
argv
.
push
(
'
--watch
'
);
}
// A temporary hack to clear terminal correctly.
// You can remove this after updating to Jest 18 when it's out.
// https://github.com/facebook/jest/pull/2230
var
realWrite
=
process
.
stdout
.
write
;
var
CLEAR
=
process
.
platform
===
'
win32
'
?
'
\
x1Bc
'
:
'
\
x1B[2J
\
x1B[3J
\
x1B[H
'
;
process
.
stdout
.
write
=
function
(
chunk
,
encoding
,
callback
)
{
if
(
chunk
===
'
\
x1B[2J
\
x1B[H
'
)
{
chunk
=
CLEAR
;
}
return
realWrite
.
call
(
this
,
chunk
,
encoding
,
callback
);
};
// @remove-on-eject-begin
// This is not necessary after eject because we embed config into package.json.
const
createJestConfig
=
require
(
'
../utils/createJestConfig
'
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment