Skip to content

Commit 9ca6afa

Browse files
authored
Add reference to Node test result viewer (#1614)
1 parent 7c8c3f4 commit 9ca6afa

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

runtime/contributing/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ Some systems, including a large part of the Node.js compatibility layer are
3535
implemented in JavaScript and TypeScript modules. These are a good place to
3636
start if you are looking to make your first contribution.
3737

38+
[Here](https://node-test-viewer.deno.dev/results/latest) is a list of Node.js
39+
test cases, including both successful and failing ones. Reviewing these can
40+
provide valuable insight into how the compatibility layer works in practice, and
41+
where improvements might be needed. They can also serve as a useful guide for
42+
identifying areas where contributions are most impactful.
43+
3844
While iterating on such modules it is recommended to include `--features hmr` in
3945
your `cargo` flags. This is a special development mode where the JS/TS sources
4046
are not included in the binary but read at runtime, meaning the binary will not

runtime/reference/node_apis.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,9 @@ importing them from the relevant `node:` module.
9696
| [`WritableStream`](https://nodejs.org/api/globals.html#class-writablestream) ||
9797
| [`WritableStreamDefaultController`](https://nodejs.org/api/globals.html#class-writablestreamdefaultcontroller) ||
9898
| [`WritableStreamDefaultWriter`](https://nodejs.org/api/globals.html#class-writablestreamdefaultwriter) ||
99+
100+
## Node test results
101+
102+
If you're interested in a more detailed view of compatibility on a per-test-case
103+
basis, you can find a list of both passing and failing Node.js test cases on
104+
[this page](https://node-test-viewer.deno.dev/).

0 commit comments

Comments
 (0)