mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-06 13:47:29 +02:00
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
rootDir: path.resolve(__dirname, '..'),
|
|
verbose: true,
|
|
testURL: 'http://localhost/',
|
|
testEnvironment: 'node',
|
|
moduleNameMapper: {
|
|
'^@lib/(.*)$': '<rootDir>/lib/$1'
|
|
},
|
|
testPathIgnorePatterns: ['/node_modules/', '__fixtures__']
|
|
};
|