- From: Domenic Denicola <notifications@github.com>
- Date: Sun, 26 Mar 2017 23:04:37 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 27 March 2017 06:05:11 UTC
Unfortunately the following very simple test fails with this patch, and was only caught by the transform stream tests, not any writable-stream tests:
```js
const ws = new WritableStream({
close() {
throw "x";
}
});
const writer = ws.getWriter();
writer.write("y");
writer.close();
```
It's again around the ready promise. Debugging help appreciated!
--
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/705#issuecomment-289361491
Received on Monday, 27 March 2017 06:05:11 UTC