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

12 lines
281 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-16 00:20:00 +08:00
setupFiles: ["<rootDir>/__tests__/env.ts"]
}