mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 20:01:28 +00:00
14 lines
363 B
JavaScript
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']
|
|
};
|