Make travis run the tests

This commit is contained in:
David Cormier 2014-08-26 20:15:13 -04:00
parent 9da4ece76d
commit b16e9536f0
2 changed files with 4 additions and 2 deletions

View file

@ -1,8 +1,8 @@
language: node_js
node_js:
- "0.10"
install: "npm -g install jshint"
script: "jshint js/*"
install: "npm install"
script: "sh -e run_tests.sh"
notifications:
email: false
irc:

2
run_tests.sh Normal file
View file

@ -0,0 +1,2 @@
./node_modules/.bin/jshint js/*
npm test