Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React-1
QOS-React-1
/
scripts
/
jest
/
setupGlobal.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
7 lines
273 Bytes
Copy permalink
Copy
Raw
1
/* eslint-disable */
2
3
module
.
exports
=
()
=>
{
4
// can use beforeEach/afterEach or setupEnvironment.js in node >= 13: https://github.com/nodejs/node/pull/20026
5
// jest's `setupFiles` is too late: https://stackoverflow.com/a/56482581/3406963
6
process
.
env
.
TZ
=
'
UTC
'
;
7
};