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