unity-test-runner/jest.config.js

12 lines
239 B
JavaScript
Raw Normal View History

2020-01-29 20:49:35 +00:00
module.exports = {
2022-01-09 14:29:20 +00:00
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
2020-01-29 20:49:35 +00:00
testEnvironment: 'node',
2022-01-09 14:29:20 +00:00
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest',
},
verbose: true,
2020-01-29 20:49:35 +00:00
};