github-pages-deploy-action/jest.config.js
2020-01-19 14:13:38 -05:00

13 lines
306 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true,
setupFiles: ["<rootDir>/__tests__/env.js"],
collectCoverage: true
}