Makefile 223 B

12345678910111213
  1. # Default task
  2. all: install
  3. # Install dependencies
  4. install:
  5. @npm install
  6. # Run test suites
  7. tests: tests-unit
  8. # Run unit tests
  9. tests-unit:
  10. @./node_modules/.bin/mocha --ui bdd --reporter spec --colors --recursive ./test