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