We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1208bd4 commit 4384a9cCopy full SHA for 4384a9c
test/binwrapTest.js
@@ -58,6 +58,22 @@ describe("binwrap", function() {
58
});
59
60
61
+
62
+ it("works when a previous version was installed", function() {
63
+ this.timeout(60000);
64
+ return exec(
65
+ "(cd test_app && ./node_modules/.bin/binwrap-install darwin x64)"
66
+ ).then(function() {
67
68
69
+ );
70
+ }).then(function() {
71
+ testServer.close();
72
+ return exec("BINWRAP_PLATFORM=darwin BINWRAP_ARCH=x64 test_app/bin/echoMe A B C").then(function(result) {
73
+ expect(result.stdout).to.equal("Me! A B C\n");
74
+ });
75
76
77
78
79
describe("installing with --ignore-scripts", function() {
0 commit comments