1
0
Fork 0
docsearch/jest.config.js
2020-09-01 11:54:48 +02:00

15 lines
389 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,
__VERSION__: 'version-test',
},
};