Skip to content
This repository has been archived by the owner on Feb 6, 2018. It is now read-only.

Commit

Permalink
Fixed tests: resume streams for cases with errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewblond committed Mar 27, 2015
1 parent 4a80439 commit 367f4eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/schemes/flat.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ describe('flat scheme', function () {
walker.on('error', function (err) {
err.must.throw();
done();
});
})
.resume();
});

describe('ignore', function () {
Expand Down
3 changes: 2 additions & 1 deletion test/schemes/nested.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ describe('nested scheme', function () {
walker.on('error', function (err) {
err.must.throw();
done();
});
})
.resume();
});

describe('ignore', function () {
Expand Down

0 comments on commit 367f4eb

Please sign in to comment.