1
0
Fork 0
docsearch/jest.config.js
2020-11-12 17:32:52 +01:00

12 lines
315 B
JavaScript

module.exports = {
rootDir: process.cwd(),
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'],
testPathIgnorePatterns: ['node_modules/', 'dist/', 'cypress/'],
watchPlugins: [
'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname',
],
globals: {
__DEV__: true,
},
};