Files
payload/jest.config.js
2021-12-13 21:43:21 -05:00

10 lines
206 B
JavaScript

module.exports = {
verbose: true,
testEnvironment: 'node',
testMatch: ['**/src/**/?(*.)+(spec|test|it-test).[tj]s?(x)'],
testTimeout: 10000,
transform: {
'^.+\\.(ts|tsx)?$': 'ts-jest',
},
}