Skip to content

Commit 477df1a

Browse files
committed
Revert "Add some failing tests for path.join"
This reverts commit 8c0e87f. (Revert until fix comes)
1 parent 38f117c commit 477df1a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/simple/test-path.js

-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ assert.equal(path.extname("file."), ".");
3939

4040
assert.equal(path.join(".", "fixtures/b", "..", "/b/c.js"), "fixtures/b/c.js");
4141
assert.equal(path.join("/foo", "../../../bar"), "/bar");
42-
assert.equal(path.join('./'), '.');
43-
assert.equal(path.join('.'), '.');
44-
assert.equal(path.join('', 'foo'), 'foo');
45-
assert.equal(path.join('foo', '/bar'), 'foo/bar');
4642

4743
assert.equal(path.normalize("./fixtures///b/../b/c.js"), "fixtures/b/c.js");
4844
assert.equal(path.normalize("./fixtures///b/../b/c.js",true), "fixtures///b/c.js");

0 commit comments

Comments
 (0)