migerh/js-module-walker

View on GitHub
tests.sh

Summary

Maintainability
Test Coverage
#!/bin/sh

# unit tests

npx nyc ava
UNIT=$?

# end2end tests

npm link
cucumber
END2END=$?

exit $(($UNIT + $END2END))