提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
223 B

  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