12 lines
164 B
JavaScript
12 lines
164 B
JavaScript
|
const base = require('./jest.config.js');
|
||
|
|
||
|
module.exports = {
|
||
|
...base,
|
||
|
forceExit: true,
|
||
|
detectOpenHandles: true,
|
||
|
testTimeout: 120000,
|
||
|
maxWorkers: 1,
|
||
|
};
|
||
|
|
||
|
|