This pull request fixes issue #8 using npm-run-all as suggested. It uses the --sequential flag for sequential execution of the given test:* subscripts.
I have also added the --print-label flag that prefixes each script output with the script name for easier troubleshooting. npm test will stop at the first subscript failure. npm test -- -c will run all the subscripts regardless of their completion status.
This pull request fixes issue #8 using
npm-run-all
as suggested. It uses the--sequential
flag for sequential execution of the giventest:*
subscripts.I have also added the
--print-label
flag that prefixes each script output with the script name for easier troubleshooting.npm test
will stop at the first subscript failure.npm test -- -c
will run all the subscripts regardless of their completion status.Happy Hacktoberfest!