Skip to content

Commit

Permalink
test: fix test-child-process-exec-cwd
Browse files Browse the repository at this point in the history
Refs: #47020
Refs: nodejs/build#3046
PR-URL: #47235
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
  • Loading branch information
StefanStojanovic authored and danielleadams committed Jul 6, 2023
1 parent faabd48 commit 1e6fe56
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion test/parallel/parallel.status
Expand Up @@ -19,7 +19,6 @@ test-child-process-stdio-reuse-readable-stdio: PASS, FLAKY

# Windows on ARM
[$system==win32 && $arch==arm64]
test-child-process-exec-cwd: SKIP

[$system==linux]
# https://github.com/nodejs/node/issues/39368
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-exec-cwd.js
Expand Up @@ -35,5 +35,5 @@ if (common.isWindows) {
}

exec(pwdcommand, { cwd: dir }, common.mustSucceed((stdout, stderr) => {
assert(stdout.startsWith(dir));
assert(stdout.toLowerCase().startsWith(dir));
}));

0 comments on commit 1e6fe56

Please sign in to comment.