Skip to content

Commit 5e6b97f

Browse files
committed
temp comment out test and check equality
1 parent dcea6a8 commit 5e6b97f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

test/cli-spec.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,15 @@ describe('command line interface', function () {
229229
assert.ok(
230230
fs.existsSync('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/SymlinkedDir'),
231231
);
232-
assert.ok(
233-
fs
234-
.realpathSync('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/SymlinkedDir')
235-
.endsWith(path.normalize('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/Test')),
232+
assert.equal(
233+
fs.realpathSync('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/SymlinkedDir'),
234+
path.normalize('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/Test'),
236235
);
236+
// assert.ok(
237+
// fs
238+
// .realpathSync('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/SymlinkedDir')
239+
// .endsWith(path.normalize('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/Test')),
240+
// );
237241
assert.ok(
238242
fs
239243
.realpathSync(

0 commit comments

Comments
 (0)