mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 20:01:28 +00:00
--------- Co-authored-by: Pooja Belaramani <pooja@usebruno.com> Co-authored-by: lohit jiddimani <lohitjiddimani@lohits-MacBook-Air.local> Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.(ts|js)$': 'babel-jest',
|
|
},
|
|
transformIgnorePatterns: [
|
|
'/node_modules/(?!(lodash-es)/)',
|
|
],
|
|
testEnvironment: 'node'
|
|
};
|