1
0
Fork 0
mirror of https://github.com/actions/toolkit.git synced 2025-06-07 22:17:01 +09:00
toolkit/jest.config.js
2024-01-09 19:47:25 +00:00

11 lines
243 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>/packages'],
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}