File: Makefile

package info (click to toggle)
node-package 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: javascript: 72; makefile: 11
file content (12 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
TESTS = $(shell find test -iname \*.test.js)

test:
	@NODE_ENV=test /usr/bin/mocha \
	--require should \
	--reporter spec \
	$(TESTS)

clean:
	rm -f examples/tmp/*

.PHONY: test clean