Skip to content

Commit

Permalink
test: added missing done() callback on .catch()
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Estilles committed Apr 19, 2015
1 parent 71a5eae commit 0da53e9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions test/changelog.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ describe('changelog.js', function() {
})
.catch(function(err){
console.log('error', err);
})
done(err);
});
});

it('should read log since specified tag if tag is present', function(done) {
Expand All @@ -142,7 +143,8 @@ describe('changelog.js', function() {
})
.catch(function(err){
console.log('error', err);
})
done(err);
});
});

it('should add the application name', function(done) {
Expand All @@ -159,9 +161,10 @@ describe('changelog.js', function() {
})
.catch(function(err){
console.log('error', err);
})
done(err);
});
});


});
});
});

0 comments on commit 0da53e9

Please sign in to comment.