mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-06-29 22:37:30 +00:00
c25888f15f
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
15 lines
272 B
TypeScript
15 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
|
|
};
|