mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
14 lines
270 B
JavaScript
14 lines
270 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.js$': 'babel-jest'
|
|
},
|
|
setupFiles: ['<rootDir>/jest.setup.js'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(nanoid)/)'
|
|
],
|
|
testEnvironment: 'node',
|
|
moduleNameMapper: {
|
|
'^nanoid(/(.*)|$)': 'nanoid$1'
|
|
}
|
|
};
|