gitbeaker/jest.config.js
2018-05-09 21:38:53 -04:00

8 lines
212 B
JavaScript

module.exports = {
verbose: true,
coverageDirectory: './coverage/',
collectCoverage: true,
testRegex: '(/__tests__/.*|/tests/.*|(\\.|/)(test|spec))\\.jsx?$',
reporters: ['jest-tap-reporter'],
};