Files
Baileys/jest.config.js
2023-03-18 12:25:47 +05:30

14 lines
223 B
JavaScript

module.exports = {
'roots': [
'<rootDir>/src'
],
'testMatch': [
'**/Tests/test.*.+(ts|tsx|js)',
],
'transform': {
'^.+\\.(ts|tsx)$': 'ts-jest'
},
moduleNameMapper: {
'^axios$': require.resolve('axios'),
},
}