Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React
QOS-React
/
scripts
/
jest
/
devtools
/
setupTests.build-devtools-regression.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
7 lines
235 Bytes
Copy permalink
Copy
Raw
1
'
use strict
'
;
2
3
// Regression tests use a React DOM profiling, so we need
4
// to replace these tests with scheduler/tracing-profiling
5
jest
.
mock
(
'
scheduler/tracing
'
,
()
=>
{
6
return
jest
.
requireActual
(
'
scheduler/tracing-profiling
'
);
7
});