Skip to content

Commit 6fc6153

Browse files
committed
fix: unit test for windows
1 parent 56e0948 commit 6fc6153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup-local/test/binaryControl.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe('Binary Control Operations', () => {
6666
sinon.stub(os, 'arch').returns(system.arch);
6767
const binaryControl = new BinaryControl();
6868
expect(binaryControl.binaryLink).to.eql(system.binary);
69-
expect(binaryControl.binaryFolder).to.include(system.folder);
69+
expect(binaryControl.binaryFolder).to.include(path.resolve(system.folder));
7070
os.platform.restore();
7171
os.arch.restore();
7272
});

0 commit comments

Comments
 (0)