- From: Adam Rice <notifications@github.com>
- Date: Mon, 16 Jan 2017 03:53:45 -0800
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 16 January 2017 11:54:17 UTC
ricea commented on this pull request. > + + abortPromise = writer.abort(error1); + abortPromise.catch(() => { + abortPromiseRejected = true; + }); + + const writePromise2 = writer.write('a'); + + writer.closed.catch(() => { + closedRejected = true; + }); + + return Promise.all([ + promise_rejects(t, new TypeError(), writePromise2, 'writePromise2 must be rejected'), + promise_rejects(t, new TypeError(), writer.ready, 'writer.ready must be rejected after abort()'), + flushAsyncEvents() Missing return -- 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/655#pullrequestreview-16789498
Received on Monday, 16 January 2017 11:54:17 UTC