-
Notifications
You must be signed in to change notification settings - Fork 744
Switch to the ava test framework #560
Copy link
Copy link
Closed
Description
This is a bug to track the progress of switching to the ava test framework.
Here is the proposed approach:
- make a directory called
ava-test/ - copy the resources to
ava-test/resources/(leave a copy where it is now, too) - one by one, remove a file from
test/and put its ava equivalent inava-test/ - modify
npm test: instead ofnode scripts/run-tests, turn it intonode scripts/run-tests && ava --serial ava-test/*.js - remove the old
test/folder, and rungit mv ava-test/ test/ - remove the
run-testsscript and changenpm testto run onlyava --serial test/*.js
Reactions are currently unavailable