gpg/jest.config.js
CrazyMax e33a6489fd
Container based developer flow (#76)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2021-01-29 11:29:31 +00:00

12 lines
270 B
JavaScript

module.exports = {
clearMocks: true,
coverageDirectory: 'coverage',
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: false
}