goreleaser-action/jest.config.ts

15 lines
272 B
TypeScript
Raw Normal View History

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