adds travis

This commit is contained in:
Todd Treece 2015-08-01 20:04:08 -04:00
parent ca5659b115
commit 3f5a02cae2
2 changed files with 10 additions and 1 deletions

9
.travis.yml Normal file
View file

@ -0,0 +1,9 @@
language: node_js
node_js:
- '0.12'
before_script:
- npm install -g gulp
notifications:
email:
on_success: change
on_failure: change

View file

@ -36,7 +36,7 @@ gulp.task('test', function() {
return gulp.src('test/*.js', {read: false})
.pipe(mocha())
.once('error', function(err) {
console.error(err);
console.error(err.toString());
process.exit(1);
})
.once('end', function() {