#
# Run all tests
#

docco = ./node_modules/docco/bin/docco

all:
	npm install

clean:
	rm -rf node_modules/*
	: TODO clean docs

test:
	./node_modules/mocha/bin/_mocha -R spec -t 10000

check: test

.PHONY: test
