* chore(deps): bump serialize-error from 8.1.0 to 9.0.0 Closes #7662 Co-authored-by: Tim Lai <timothy.lai@gmail.com>
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
rootDir: path.join(__dirname, '..', '..'),
|
|
testEnvironment: 'jsdom',
|
|
testMatch: ['**/test/build-artifacts/**/*.js'],
|
|
transformIgnorePatterns: [
|
|
'/node_modules/(?!(serialize-error)/)',
|
|
]
|
|
};
|