File: Makefile

package info (click to toggle)
node-expect.js 0.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 152 kB
  • ctags: 50
  • sloc: makefile: 20
file content (14 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

REPORTER = dot

test:
	@./node_modules/.bin/mocha \
		--require ./test/common \
		--reporter $(REPORTER) \
		--growl \
		test/expect.js

test-browser:
	@./node_modules/.bin/serve .

.PHONY: test