Files
bruno/packages/bruno-requests/jest.config.js

13 lines
272 B
JavaScript

module.exports = {
transform: {
'^.+\\.(ts|js)$': 'babel-jest',
},
transformIgnorePatterns: [
'/node_modules/(?!(lodash-es)/)',
],
testEnvironment: 'node',
testMatch: [
'**/*.(test|spec).(ts|js)'
],
moduleFileExtensions: ['ts', 'js', 'json']
};