mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-26 06:05:45 +00:00
This contains the bulk of the changes apart from renaming files. This is a continuation of #2341. Co-authored-by: lohit <lohit@usebruno.com> Co-authored-by: pooja-bruno <pooja@usebruno.com>
14 lines
271 B
JavaScript
14 lines
271 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.js$': 'babel-jest',
|
|
},
|
|
setupFiles: ['<rootDir>/jest.setup.js'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(nanoid)/)'
|
|
],
|
|
testEnvironment: 'node',
|
|
moduleNameMapper: {
|
|
'^nanoid(/(.*)|$)': 'nanoid$1'
|
|
}
|
|
};
|