setup-dotnet/jest.config.js

12 lines
238 B
JavaScript
Raw Normal View History

2022-01-28 23:53:32 +07:00
module.exports = {~h
2019-06-20 03:22:22 +07:00
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
2022-01-28 23:53:32 +07:00
}