8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
rootDir: path.join(__dirname, '..', '..'),
|
|
testEnvironment: 'jsdom',
|
|
testMatch: ['**/test/build-artifacts/**/*.js'],
|
|
};
|