Skip to content

Commit 46d8c93

Browse files
jbergstroemMyles Borins
authored and
Myles Borins
committed
test: don't use cwd for relative path
With the introduction of temporary paths in the test runner realpath tests would bail in scenarios where the temporary folder wasn't in the same directory as the source code. PR-URL: #4477 Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 33e72e1 commit 46d8c93

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/parallel/test-fs-realpath.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,10 @@ function test_relative_input_cwd(callback) {
236236
return runNextTest();
237237
}
238238

239-
// we need to get the relative path to the tmp dir from cwd.
240-
// When the test runner is running it, that will be .../node/test
241-
// but it's more common to run `./node test/.../`, so detect it here.
239+
// we need to calculate the relative path to the tmp dir from cwd
242240
var entrydir = process.cwd();
243-
var entry = common.tmpDir.substr(entrydir.length + 1) + '/cycles/realpath-3a';
241+
var entry = path.relative(entrydir,
242+
path.join(common.tmpDir + '/cycles/realpath-3a'));
244243
var expected = common.tmpDir + '/cycles/root.js';
245244
[
246245
[entry, '../cycles/realpath-3b'],

0 commit comments

Comments
 (0)