9 lines
269 B
JavaScript
9 lines
269 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
rootDir: path.join(__dirname, '..', '..'),
|
|
testEnvironment: 'jsdom',
|
|
testMatch: ['**/test/build-artifacts/**/*.js'],
|
|
transformIgnorePatterns: ['/node_modules/(?!(swagger-client|react-syntax-highlighter)/)'],
|
|
};
|