github-pages-deploy-action/jest.config.js

13 lines
306 B
JavaScript
Raw 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,
2020-01-20 03:13:38 +08:00
setupFiles: ["<rootDir>/__tests__/env.js"],
collectCoverage: true
}