summaryrefslogtreecommitdiff
path: root/thirdparty/jed/Makefile
blob: 6e985850157406c43fbb3a5448ad17a42623aeed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
REPORTER = dot

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

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

.PHONY: test