1*082815dcSEvan Baconconst path = require('path');
2*082815dcSEvan Bacon
3*082815dcSEvan Baconmodule.exports = {
4*082815dcSEvan Bacon  testEnvironment: 'node',
5*082815dcSEvan Bacon  testRegex: '/__tests__/.*(test|spec)\\.[jt]sx?$',
6*082815dcSEvan Bacon  watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'],
7*082815dcSEvan Bacon  clearMocks: true,
8*082815dcSEvan Bacon  rootDir: path.resolve(__dirname),
9*082815dcSEvan Bacon  displayName: require('./package').name,
10*082815dcSEvan Bacon  roots: ['__mocks__', 'src'],
11*082815dcSEvan Bacon};
12