Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
language: node_js
node_js:
- "0.8"

before_script:
- npm install --quiet -g mocha

services:
- mongodb
6 changes: 3 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ REPORTER = dot

check: test

test: test-unit
test: test-unit test-functional

test-unit:
@NODE_ENV=test ./node_modules/.bin/mocha \
@NODE_ENV=test mocha \
--compilers coffee:coffee-script \
--recursive \
--reporter $(REPORTER) \
Expand All @@ -20,7 +20,7 @@ test-functional:
test/functional

test-unit-report:
@NODE_ENV=test ./node_modules/.bin/mocha \
@NODE_ENV=test mocha \
--compilers coffee:coffee-script \
--recursive \
--reporter markdown \
Expand Down