Files
setup-haskell/jest.config.js

10 lines
229 B
JavaScript
Raw Permalink Normal View History

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