main
js 7 lines 273 Bytes
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 };