Skip to content

node:fs: snapshot path buffers backed by resizable ArrayBuffers for async ops#32189

Open
robobun wants to merge 4 commits into
mainfrom
farm/cd9be304/fs-resizable-path-snapshot
Open

node:fs: snapshot path buffers backed by resizable ArrayBuffers for async ops#32189
robobun wants to merge 4 commits into
mainfrom
farm/cd9be304/fs-resizable-path-snapshot

ci: retrigger

7987aea
Select commit
Loading
Failed to load commit list.
Claude / Claude Code Review completed Jun 12, 2026 in 21m 6s

Code review found 1 potential issue

Found 3 candidates, confirmed 1. See review comments for details.

Details

Severity Count
🔴 Important 0
🟡 Nit 1
🟣 Pre-existing 0
Severity File:Line Issue
🟡 Nit test/js/node/fs/fs.test.ts:4456-4457 stderr is read but dropped from the failure assertion

Annotations

Check warning on line 4457 in test/js/node/fs/fs.test.ts

See this annotation in the file changed.

@claude claude / Claude Code Review

stderr is read but dropped from the failure assertion

nit: `stderr` is read on line 4456 but dropped from the assertion on line 4457, so when this crash-class test fails the diff shows only `{stdout: "", exitCode: 132}` with no crash report or fixture error message. Consider `expect(stderr).not.toMatch(/AddressSanitizer|Segmentation fault/)` before the combined assertion (or add `stderr: ""` to the `toEqual` object) so the diagnostic surfaces in the failure diff.