9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
|
const base = require('./jest.config')
|
||
|
|
||
|
module.exports = {
|
||
|
...base,
|
||
|
roots: ['<rootDir>/bench'],
|
||
|
testRegex: '(.*.bench.ts)',
|
||
|
testTimeout: 3000000,
|
||
|
}
|