Fix failing unit tests.

This commit is contained in:
kialam 2018-11-30 12:16:28 -05:00
parent 3e1e068013
commit 473ce95c86
No known key found for this signature in database
GPG Key ID: 2D0E60E4B8C7EA0F

View File

@ -56,6 +56,8 @@ describe('Output | StreamService', () => {
});
it('returns true', () => {
stream.counters.min = 1;
stream.counters.ready = 2;
stream.state.ending = true;
let res = stream.isReadyToRender();
expect(res).toBe(true);