goreleaser-action/jest.config.ts
CrazyMax c25888f15f
chore: update dev dependencies and workflow (#342)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-04-25 05:17:05 +02:00

14 lines
272 B
TypeScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
setupFiles: [
'dotenv/config',
'<rootDir>/src/test_setup.ts'
],
testMatch: ['**/*.test.ts'],
testTimeout: 30000,
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
};