1
0
Fork 0
docsearch/jest.config.js
2020-09-01 14:24:58 +02:00

14 lines
356 B
JavaScript

/* eslint-disable import/no-commonjs */
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,
},
};