New rules for running tests

This commit is contained in:
Fernando Blat 2011-06-13 12:29:57 +02:00
parent 0626d03b37
commit d2058cf794

View File

@ -3,8 +3,13 @@ test-tmp:
@mkdir -p test/tmp
test:
expresso -I lib test/unit/*.js
#test/acceptance/*.js
expresso -I lib test/unit/*.js test/acceptance/*.js
test-acceptance:
expresso -I lib test/acceptance/*.js
test-unit:
expresso -I lib test/unit/*.js
test-cov:
expresso -I lib --cov test/unit/*.js test/acceptance/*.js