parallel/test-inspector-dom-storage (added by #61139) is writing localstorage.db to the current working directory. This is counter to the expectation that tests write to a temp directory (e.g. via common.tmpdir) that gets cleaned up afterwards.
e.g.
$ pwd
/tmp
$ ls -al
total 0
drwxrwxrwt. 1 root root 6 Apr 9 13:43 .
drwxr-xr-x. 1 root root 29 Apr 9 11:56 ..
$ ~/sandbox/github/node/out/Release/node ~/sandbox/github/node/test/parallel/test-inspector-dom-storage.js
NOTE: The test started as a child_process using these flags: [
'--inspect=0',
'--experimental-storage-inspection',
'--localstorage-file=./localstorage.db'
] And these environment variables: {} Use NODE_SKIP_FLAG_CHECK to run the test with the original flags.
Debugger listening on ws://127.0.0.1:39585/a72ca654-160b-47a7-a4e5-b04ac1bcd0b9
For help, see: https://nodejs.org/en/docs/inspector
$ ls -al
total 16
drwxrwxrwt. 1 root root 29 Apr 9 13:48 .
drwxr-xr-x. 1 root root 29 Apr 9 11:56 ..
-rw-r--r--. 1 rlau rlau 16384 Apr 9 13:48 localstorage.db
$
parallel/test-inspector-dom-storage(added by #61139) is writinglocalstorage.dbto the current working directory. This is counter to the expectation that tests write to a temp directory (e.g. viacommon.tmpdir) that gets cleaned up afterwards.e.g.