unity-builder/jest.config.js

13 lines
295 B
JavaScript
Raw Normal View History

2019-12-22 14:05:15 +00:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
2021-09-29 22:34:39 +00:00
modulePathIgnorePatterns: ['src/model/cloud-runner'],
2019-12-22 14:05:15 +00:00
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest',
},
verbose: true,
2019-12-22 14:05:15 +00:00
};