const path = require('path'); module.exports = { rootDir: path.join(__dirname, '..', '..'), testEnvironment: 'jsdom', testMatch: [ '**/test/unit/*.js?(x)', '**/test/unit/**/*.js?(x)', ], // testMatch: ['**/test/unit/core/plugins/auth/actions.js'], setupFilesAfterEnv: ['/test/unit/setup.js'], testPathIgnorePatterns: [ '/node_modules/', '/test/build-artifacts/', '/test/mocha', '/test/unit/setup.js', '/test/unit/xss/anchor-target-rel/online-validator-badge.jsx', '/test/unit/components/online-validator-badge.jsx', '/test/unit/components/live-response.jsx', ], transformIgnorePatterns: [ '/node_modules/(?!(react-syntax-highlighter)/)' ] };