15 lines
389 B
JavaScript
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',
|
|
},
|
|
};
|