Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test/parallel/test-process-cwd-deleted.js
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
Ankush1oo8 and aduh95 authored Feb 25, 2025
commit e23e544938fa573a4aaa27477f70b9800985d847
4 changes: 2 additions & 2 deletions test/parallel/test-process-cwd-deleted.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ proc.on('exit', common.mustCall((code) => {
strictEqual(code, 1);
proc.stderr.toArray().then(common.mustCall((chunks) => {
const buf = Buffer.concat(chunks);
ok(/Current working directory does not exist/.test(buf.toString()));
assert.match(buf.toString(), /Current working directory does not exist/);
}));
}));
}));