mirror of
https://github.com/wassname/talk.git
synced 2026-06-27 19:33:06 +08:00
86385e0d86
- Introduced the Jest testing framework into our server side code so plugins can now have tests that run
9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
module.exports = {
|
|
projects: ['<rootDir>', '<rootDir>/client'],
|
|
testPathIgnorePatterns: ['client'],
|
|
setupTestFrameworkScriptFile: '<rootDir>/test/setupJest.js',
|
|
testResultsProcessor: process.env.JEST_REPORTER,
|
|
testEnvironment: 'node',
|
|
modulePaths: ['<rootDir>'],
|
|
};
|