14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
console.log('Jest config file read.');
|
|
|
|
module.exports = {
|
|
globalSetup: './test/integration/setup.cjs',
|
|
globalTeardown: './test/integration/teardown.cjs',
|
|
setupFiles: ['./test/integration/helpers.cjs'],
|
|
testPathIgnorePatterns: ['/node_modules/', 'test/unit'],
|
|
verbose: true,
|
|
randomize: true,
|
|
globals: {
|
|
testServerUrl: 'http://localhost:3005/'
|
|
},
|
|
};
|