Skip to content

Commit

Permalink
fix test from merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaietta committed Nov 13, 2024
1 parent 38c1819 commit bb7cfc1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/cli-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,10 @@ describe('command line interface', function () {
.endsWith('tmp/packthis-with-symlink.asar.unpacked/Hello.framework/Versions/A/Headers'),
);
} else {
assert.equal(
fs.readlinkSync('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/SymlinkedDir'),
'Test',
assert.ok(
fs
.realpathSync('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/SymlinkedDir')
.endsWith(path.normalize('tmp/packthis-with-symlink.asar.unpacked/WindowsMklink/Test')),
);
assert.ok(
fs
Expand Down

0 comments on commit bb7cfc1

Please sign in to comment.