Merge pull request #24 from dgsan/master

Since there's no timeout param to mocha test frequently fail somewhat randomly. Default timeout to 15000, which consistently passes on my system, whereas the default 2000 fails every time.
This commit is contained in:
dgsan 2013-04-18 08:43:05 -07:00
commit a54dd29c43
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
## TESTS
TESTER = ./node_modules/.bin/mocha
OPTS = --growl --globals getSchema
OPTS = --growl --globals getSchema --timeout 15000
TESTS = test/*.test.js
test: