Skip to content

Commit

Permalink
fix macOS ?
Browse files Browse the repository at this point in the history
  • Loading branch information
amr-crabnebula committed Nov 23, 2023
1 parent 6e8b093 commit 51ac706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/updater/nodejs/__test__/index.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ test("it works", async (t) => {
env: { UPDATER_FORMAT: updaterFormat },
});
const version = stdout.split("\n")[0];
t.is(version, "1.0.0");
if (version == "1.0.0") {
if (version === "1.0.0") {
t.is(version, "1.0.0");
console.log(`app is updated, new version: ${version}`);
break;
}
Expand Down

0 comments on commit 51ac706

Please sign in to comment.