Files
bruno/packages/bruno-requests/jest.config.js
2025-12-04 01:37:20 +05:30

14 lines
363 B
JavaScript

module.exports = {
transform: {
'^.+\\.(ts|js)$': 'babel-jest'
},
transformIgnorePatterns: [
'/node_modules/(?!(lodash-es|is-ip|ip-regex|super-regex|function-timeout|time-span|convert-hrtime|clone-regexp|is-regexp)/)'
],
testEnvironment: 'node',
testMatch: [
'**/*.(test|spec).(ts|js)'
],
moduleFileExtensions: ['ts', 'js', 'json']
};