mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-22 04:05:42 +00:00
10 lines
267 B
JavaScript
10 lines
267 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'
|
|
};
|