- From: Adam Rice <notifications@github.com>
- Date: Tue, 15 Aug 2017 16:51:46 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 15 August 2017 23:52:08 UTC
ricea commented on this pull request. > + t.step(() => { + assert_true(transformDone, 'pending transform promise must resolve before flush is called'); + }); + return new Promise(resolve => setTimeout(resolve, 50)) + .then(() => { flushDone = true; }); + } + }); + + assert_true(startCalled, 'start is called synchronously'); + + const writer = ts.writable.getWriter(); + writer.write('a'); + writer.close().then(t.step_func(() => { + assert_true(flushDone, 'flushPromise resolved'); + t.done(); + })) 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/762#discussion_r133331797
Received on Tuesday, 15 August 2017 23:52:08 UTC