- From: Mattias Buelens <notifications@github.com>
- Date: Tue, 16 Jul 2019 15:42:11 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 16 July 2019 22:42:33 UTC
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