1
0
mirror of https://gitlab.com/Deukhoofd/BattleSim.git synced 2025-10-27 18:00:03 +00:00

Lots of stuff

This commit is contained in:
Deukhoofd
2016-02-01 23:19:30 +01:00
commit d7316d5799
6681 changed files with 527969 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
HTMLDOCS = $(DOCS:.md=.html)
REPORTER = spec
test:
NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) --require should --compilers coffee:coffee-script/register
test-cov: lib-cov
NUGGETBRIDGE_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
lib-cov:
rm -rf server-cov
coffee -c server
jscoverage server server-cov
rm server/*.js
.PHONY: test