Skip to content

Commit

Permalink
Merge branch 'dev' into merge-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
atomrc committed Oct 26, 2022
2 parents 69481d8 + 9b77ee4 commit bfcb748
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@
*
*/

import type {Config} from 'jest';
process.env.TZ = 'UTC';

module.exports = {
const config: Config = {
collectCoverageFrom: ['src/script/**/*.{ts,tsx}', '!src/script/util/test/**/*.*'],
moduleDirectories: ['node_modules', __dirname],
// Must be in sync with tsconfig.json >> paths
Expand All @@ -40,3 +41,6 @@ module.exports = {
testRegex: '(test|Spec)\\.[tj]sx?$',
testRunner: 'jest-jasmine2',
};

// eslint-disable-next-line import/no-default-export
export default config;

0 comments on commit bfcb748

Please sign in to comment.