Re: [whatwg/streams] Fix pipe not aborting when both preventAbort and preventCancel are set (#1006)

Looks like jsdom doesn't expose `queueMicrotask` on its `window` yet... I guess we could expose it ourselves in [`run-web-platform-tests.js`](https://github.com/whatwg/streams/blob/6f94580f6731d1e017c516af097d47c45aad1f56/reference-implementation/run-web-platform-tests.js#L39)?
```javascript
  const failures = await wptRunner(testsPath, {
    rootURL: 'streams/',
    setup(window) {
      window.queueMicrotask = queueMicrotask;
      window.eval(bundledJS);
    },
    // ...
  });
```

-- 
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/1006#issuecomment-512029315

Received on Tuesday, 16 July 2019 22:42:33 UTC