James M Snell
James M Snell
With the current definition of the `EventTarget` integration, there's currently no mechanism for ending the stream of events, making things like `await observer.toArray()` or `await observer.last()` problematic if not used...
It would be useful for the `Observable` class to support the upcoming `Symbol.dispose` or `Symbol.asyncDispose` mechanism (TC39 Explicit Resource Management proposal) such that when the `Observable` is disposed while still...
Starting the long process of refactoring our own tests to use the node:test module and mocks. Also, splits the test that depends on internal API from the rest of the...
This is just a proof of concept to start working through what is necessary to integrate web platform tests into wd-tests. There are some limitations to this approach... 1. All...
In Node.js, there is now experimental support for `require('...')` an ESM. In Node.js, by default, requiring an ESM, the require returns the module namespace. There is a new PR, however,...
See https://github.com/whatwg/dom/pull/1295 .. we'll want to update our implementation of `AbortSignal` accordingly.