mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-22 17:10:26 +03:00
23 lines
493 B
JavaScript
23 lines
493 B
JavaScript
const jestConfig = require(`${__dirname}/jest.config.js`);
|
|
|
|
module.exports = {
|
|
mutate: jestConfig.collectCoverageFrom,
|
|
checkers: [ 'typescript' ],
|
|
tsconfigFile: 'tsconfig.json',
|
|
testRunner: 'jest',
|
|
reporters: [ 'progress', 'clear-text' ],
|
|
coverageAnalysis: 'off',
|
|
jest: {
|
|
projectType: 'custom',
|
|
config: jestConfig,
|
|
enableFindRelatedTests: true,
|
|
},
|
|
thresholds: {
|
|
high: 80,
|
|
low: 60,
|
|
break: null,
|
|
},
|
|
clearTextReporter: {
|
|
logTests: false,
|
|
},
|
|
};
|