- From: Domenic Denicola <notifications@github.com>
- Date: Mon, 30 Nov 2015 10:12:53 -0800
- To: whatwg/streams <streams@noreply.github.com>
Received on Monday, 30 November 2015 18:13:30 UTC
> +promise_test(t => {
> +
> + const promiseAsserts = [];
> +
> + let controller;
> + const theError = { name: 'unique error' };
> + const rs = new ReadableStream({
> + start(c) {
> + controller = c;
> + }
> + });
> +
> + const reader1 = rs.getReader();
> +
> + promiseAsserts.push(
> + promise_rejects(t, theError, reader1.closed)
Thanks, good find
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/408/files#r46179823
Received on Monday, 30 November 2015 18:13:30 UTC