Skip to content

Commit 74feea3

Browse files
authored
chore: sync with dev branch
2 parents 094ec58 + bfcb748 commit 74feea3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jest.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
*
1818
*/
1919

20+
import type {Config} from 'jest';
2021
process.env.TZ = 'UTC';
2122

22-
module.exports = {
23+
const config: Config = {
2324
collectCoverageFrom: ['src/script/**/*.{ts,tsx}', '!src/script/util/test/**/*.*'],
2425
moduleDirectories: ['node_modules', __dirname],
2526
// Must be in sync with tsconfig.json >> paths
@@ -40,3 +41,6 @@ module.exports = {
4041
testRegex: '(test|Spec)\\.[tj]sx?$',
4142
testRunner: 'jest-jasmine2',
4243
};
44+
45+
// eslint-disable-next-line import/no-default-export
46+
export default config;

0 commit comments

Comments
 (0)