mirror of
https://github.com/idrawjs/idraw
synced 2026-05-23 17:48:23 +00:00
22 lines
402 B
JavaScript
22 lines
402 B
JavaScript
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const config = require('./jest.config');
|
|
|
|
module.exports = {
|
|
...config,
|
|
...{
|
|
collectCoverage: true,
|
|
coverageReporters: [
|
|
'clover',
|
|
// "html",
|
|
'text-summary'
|
|
],
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 1,
|
|
functions: 1,
|
|
lines: 1,
|
|
statements: 1
|
|
}
|
|
}
|
|
}
|
|
};
|