Я использую jest
для запуска модульных тестов в моем проекте nodejs.Когда я запускаю yarn test
, тесты запускаются, но отчет не генерируется.
"scripts": {
"test": "yarn run test:dev tests",
"test:dev": "jest --config jest.config.js"
},
"dependencies": {
"jest": "^22.4.4",
"lodash": "^4.17.10",
"mongodb": "^3.1.0-beta4",
"test-utils": "^1.1.1"
},
"devDependencies": {
"jest-html-reporter": "^2.3.0"
},
"jest": {
"testResultsProcessor": "./node_modules/jest-html-reporter",
"pageTitle": "Test Report",
"outputPath": "./test-report.html"
}
Я также попытался поместить конфигурацию в файл jest.config.js
, но она также не работает.Что еще мне нужно настроить?
module.exports = {
"globalSetup": "<rootDir>/src/globalSetup.js",
"globalTeardown": "<rootDir>/src/globalTeardown.js",
"testResultsProcessor": "./node_modules/jest-html-reporter"
}