login-action/jest.config.ts

11 lines
206 B
TypeScript
Raw Normal View History

2020-08-21 14:45:16 +02:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
setupFiles: ["dotenv/config"],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
2020-08-21 14:45:16 +02:00
}