diff --git a/test/index.js b/test/index.js index 55aaad4..25db857 100644 --- a/test/index.js +++ b/test/index.js @@ -12,6 +12,12 @@ describe('read', function () { .on('end', done); }); + it('should accept options', function (done) { + read({}) + .on('data', done) + .on('end', done); + }); + it('should accept array of streams', function (done) { var stream = through.obj();