mirror of
https://github.com/goreleaser/goreleaser-action.git
synced 2026-05-14 14:50:32 +00:00
14 lines
272 B
TypeScript
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
|
|
};
|