cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

Makefile (208B)


      1ALL_TESTS = $(shell find test/ -name '*.test.js')
      2
      3run-tests:
      4	@./node_modules/.bin/mocha \
      5		-t 2000 \
      6		$(TESTFLAGS) \
      7		$(TESTS)
      8
      9test:
     10	@$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
     11
     12.PHONY: test