- From: Adam Rice <notifications@github.com>
- Date: Wed, 05 Oct 2016 21:21:27 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Thursday, 6 October 2016 04:21:57 UTC
ricea commented on this pull request. > + }); +}, 'controller argument should be passed to start method'); + +promise_test(() => { + const ws = new WritableStream({}, { + highWaterMark: 1000, + size() { return 1; } + }); + + const writer = ws.getWriter(); + + assert_equals(writer.desiredSize, 1000, 'desiredSize should be 1000'); + return writer.ready.then(v => { + assert_equals(v, undefined, 'ready promise should fulfill with undefined'); + }); +}, 'highWaterMark should be copied to desiredSize'); Done. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/524
Received on Thursday, 6 October 2016 04:21:57 UTC