diff --git a/Makefile b/Makefile deleted file mode 100644 index 3d1e31a..0000000 --- a/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -## TESTS - -TESTER = ./node_modules/.bin/mocha -OPTS = --growl --globals getSchema --timeout 15000 -TESTS = test/*.test.js - -test: - $(TESTER) $(OPTS) $(TESTS) -test-verbose: - $(TESTER) $(OPTS) --reporter spec $(TESTS) -testing: - $(TESTER) $(OPTS) --watch $(TESTS) -.PHONY: test docs coverage