mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
15 lines
300 B
JavaScript
15 lines
300 B
JavaScript
const baseConfig = require('../../jest.config.native');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
workerIdleMemoryLimit: '1024MB',
|
|
coverageThreshold: {
|
|
global: {
|
|
statements: 80,
|
|
branches: 80,
|
|
functions: 80,
|
|
lines: 80,
|
|
},
|
|
},
|
|
};
|