Closed grantcox closed 5 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 100.00%. Comparing base (
48ddc4e
) to head (a826650
). Report is 5 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
I added a test to cover the content of the output report
This PR contains a:
Motivation / Use-Case
The changes in https://github.com/webpack-contrib/stylelint-webpack-plugin/pull/300 broke the
outputReport
functionality, specifically:means that the
content
that is written to the output file, is always just the.toString()
of theoutputReport.formatter
itself. For example:I have not added additional tests for this change, as I am unable to run the existing test suite:
Please note that the existing
output-report.test.js
test cases do not assert the content of the output file at all, just that it was created. This will be why the tests did not catch this regression when it occurred.