Andrew Abramov
Results
112
comments of
Andrew Abramov
Hi! `mocha-simple-html-reporter` does not analyze your code, but if your `assert` throws error with special field `htmlMessage`, then it html will be added to `html-error` section. ```html ${htmlMessage}\n${stacktrace} ``` see...
Если нужно исключить какие-то файлы, то есть опция `coverage.exclude`: ``` js coverage: { exclude: [ '**/node_modules/**', '**/libs/**' ] } ``` Но тут, как я понял считается не очень чесный coverage...