Makefile 128 B

1234567891011
  1. all: clean
  2. npm install
  3. test: all
  4. mocha test
  5. ci: all
  6. mocha --reporter xunit test > mocha.xml
  7. clean:
  8. rm -rf implementations