Permalink
Please sign in to comment.
@@ -1,17 +1,11 @@ | ||
MOCHA_OPTS= --check-leaks | ||
REPORTER = spec | ||
-default: test build lint | ||
- | ||
test: | ||
@NODE_ENV=test ./node_modules/.bin/mocha \ | ||
--reporter $(REPORTER) \ | ||
- $(MOCHA_OPTS) | ||
- | ||
-build: | ||
- grunt uglify concat | ||
- | ||
-lint: | ||
+ $(MOCHA_OPTS) && \ | ||
+ grunt uglify concat && \ | ||
grunt jshint | ||
-.PHONY: test build build | ||
+.PHONY: test |
0 comments on commit
a6ebcec