UNPKG

268 BJavaScriptView Raw
1module.exports = {
2 automock: false,
3 collectCoverageFrom: [
4 'src/**/*.{js,jsx}',
5 ],
6 roots: [
7 '<rootDir>/src',
8 '<rootDir>/test',
9 ],
10 setupFiles: [
11 './test/setup.js',
12 ],
13 testMatch: [
14 '<rootDir>/test/**/?(*.)(spec|test).js?(x)',
15 ],
16};