Re: [whatwg/streams] Refactor writable stream erroring to be centralized (#705)

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