mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-18 21:08:32 +02:00
13 lines
272 B
JavaScript
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']
|
|
}; |