Как настроить `jest-html-reporter` в jest nodejs - PullRequest
0 голосов
/ 06 июня 2018

Я использую 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"
}

1 Ответ

0 голосов
/ 02 августа 2018

Попробуйте добавить приведенный ниже фрагмент в package.json чуть выше jest config:

"jest-html-reporter": {
"pageTitle": "Unit Tests",
"outputPath": "./test-report.html",
"includeFailureMsg": true

}

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...