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.
 
 
 

16 line
296 B

  1. -include .env
  2. BASEDIR = $(realpath .)
  3. SRCDIR = $(BASEDIR)/src
  4. TESTDIR = $(SRCDIR)/test
  5. NODEMOD = $(BASEDIR)/node_modules
  6. NODEBIN = $(NODEMOD)/.bin
  7. test:
  8. $(NODEBIN)/mocha \
  9. --recursive \
  10. --compilers js:babel-core/register \
  11. $(TESTDIR)