Я пытаюсь настроить покрытие с помощью Sonar Qube и Jest Framework.Я обнаружил, что jest-sonar-reporter (https://www.npmjs.com/package/jest-sonar-reporter) не может проанализировать некоторые файлы из-за использования flowtype.js.
Вот часть журнала сборки travis:
ERROR: Failed to parse file [file:///home/travis/build/my-project/front-end/src/actions/paymentActions.js] at line 4: Unexpected token : (with espree parser in module mode)
ERROR: Failed to parse file [file:///home/travis/build/my-project/front-end/src/components/AddressField/index.js] at line 10: Unexpected token Props (with espree parser in module mode)
ERROR: Failed to parse file [file:///home/travis/build/my-project/front-end/src/components/AppealsSlider/AppealsSlider.js] at line 23: The keyword 'interface' is reserved (with espree parser in module mode)
Я вижу много одинаковых записей в журналах. Может кто-нибудь помочь мне выяснить, что я делаю не так? Вот мой файл sonar-project.properties
:
# Must be unique in a given SonarQube instance
sonar.projectKey=myproject_front-end
# Name and version displayed in the SonarQube UI.
sonar.projectName=My Project Front End
sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# Optional if sonar.modules is set.
sonar.sources=src
sonar.tests=src
sonar.exclusions=node_modules/**
sonar.test.inclusions=src/**/*.spec.js
sonar.javascript.lcov.reportPaths=coverage/jest/lcov.info
sonar.testExecutionReportPaths=coverage/jest/testlog.xml
# Encoding of the source code. By default, the system encoding
#sonar.sourceEncoding=UTF-8
Вот часть моей шуткиpackage.json
файл:
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tools/assetsTransformer.js",
"\\.(css|scss)$": "<rootDir>/tools/assetsTransformer.js"
},
"setupFiles": [
"raf/polyfill",
"./tools/enzymeTestAdapterSetup.js"
],
"testResultsProcessor": "jest-sonar-reporter"
},
Спасибо.