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.

18 lines
306 B

TEST_TIMEOUT = 2000
TEST_REPORTER = spec
lib/heap.js: src/heap.coffee
@coffee -c -o lib src
test:
@NODE_ENV=test \
node_modules/.bin/mocha \
--require should \
--timeout $(TEST_TIMEOUT) \
--reporter $(TEST_REPORTER) \
--compilers coffee:coffee-script \
test/*.coffee
.PHONY: test