- From: Adam Rice <notifications@github.com>
- Date: Fri, 14 Oct 2016 00:34:59 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Friday, 14 October 2016 07:35:29 UTC
ricea commented on this pull request. > writer.write('a'); writer.close(); - writer.ready.then(t.step_func(v => { - readyFulfilledAlready = true; - assert_equals(v, undefined, 'ready promise was fulfilled with undefined'); - t.done(); - })); - }), 0); -}, 'If close is called on a WritableStream in waiting state, ready will be fulfilled immediately even if close ' + + return writer.ready.then(v => { + assert_false(asyncCloseFinished, 'ready promise should be called before async close completes'); 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/537
Received on Friday, 14 October 2016 07:35:29 UTC