Extends Chai with assertions about streams.
npm install --save-dev chai-stream
define(function(require, exports, module) {
var chai = require('chai');
var chaiStream = require('chai-stream');
chai.use(chaiStream);
});
<script src="chai.js"></script>
<script src="chai-stream.js"></script>
var chai = require('chai');
var chaiStream = require('chai-stream');
chai.use(chaiStream);
var expect = chai.expect;
describe('getMyStream', function() {
it('should return a readable stream', function() {
var stream = getMyStream();
expect(stream).to.be.a.ReadableStream;
});
it('should return a stream that will end', function() {
var stream = getMyStream();
return expect(stream).to.end;
});
});
Type: function(any)
This assertion check that the specified object have a pipe
method.
So, it pass streams that not inherit Node's Stream.
Type: any
Type: function(any)
This assertion check that the specified object have a pipe
and resume
method.
So, it pass streams that not inherit Node's Stream.
Type: any
Type: function(any)
This assertion check that the specified object have a pipe
and write
method.
So, it pass streams that not inherit Node's Stream.
Type: any
Type: function(any): Promise<void>
Returns a promise that fulfilled when a end
event is fired.
And this function force the stream to read (like piping with WritableStream
).
Type: any
waitUntilStreamEnd
listen end
or error
event of the stream.
var chai = require('chai');
var chaiStream = require('chai-stream');
chai.use(chaiStream);
var assert = chai.assert;
describe('getMyStream', function() {
it('should return a readable stream', function() {
var stream = getMyStream();
assert.isReadableStream(stream);
});
it('should return a stream that will end', function() {
var stream = getMyStream();
return assert.streamWillEnd(stream);
});
});
Type: function(any)
This assertion check that the specified object have a pipe
method.
So, it pass streams that not inherit Node's Stream.
Type: any
Type: function(any)
This assertion check that the specified object have a pipe
and resume
method.
So, it pass streams that not inherit Node's Stream.
Type: any
Type: function(any)
This assertion check that the specified object have a pipe
and write
method.
So, it pass streams that not inherit Node's Stream.
Type: any
Type: function(any): Promise<void>
Returns a promise that fulfilled when a end
event is fired.
And this function force the stream to read (like piping with WritableStream
).
Type: any
waitUntilStreamEnd
listen end
or error
event of the stream.