1
0
Files
metadata-action/jest.config.ts
T

11 lines
207 B
TypeScript
Raw Normal View History

2020-10-25 02:25:23 +01:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
2022-03-22 21:09:00 +01:00
setupFiles: ['dotenv/config'],
2020-10-25 02:25:23 +01:00
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
2022-03-22 21:09:00 +01:00
verbose: true
};