test: change test runner to vitest #525
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change moves the test runner from
mocha
+nyc
tovitest
.In order to import
vitest
the tests had to be in esm, so I checked out everything under thetests
folder from #516 (leaving the source as it was).I also moved the
eslint-rule-tester
out of thetests/lib
folder and into its ownutils
folder. That way vitest didn't treat it as a test.Note: rather than using
vitest
's preferredv8
coverage reporter, I used theistanbul
one, to ensure the coverages between old and new were the same. I did notice that when I tried thev8
coverage reporter, the coverage numbers were much less. Something to consider as a follow-up change. The v8 reporter should be more accurate, so the coverage may not be as high as it seems. I'd recommend moving up to thev8
reporter after the esm branch lands.