adds travis
This commit is contained in:
parent
ca5659b115
commit
3f5a02cae2
2 changed files with 10 additions and 1 deletions
9
.travis.yml
Normal file
9
.travis.yml
Normal 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
|
||||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue