Skip to content

Commit

Permalink
ONEMOAR
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Aug 31, 2024
1 parent 630a708 commit 322a91f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions commitlint/tests/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@ test("testing operators", () => {
foo = "2";
bar = foo ? 0 : 1;
expect(bar).toBe(0);
foo = false;
bar = foo ? 0 : 1;
expect(bar).toBe(1);
});

0 comments on commit 322a91f

Please sign in to comment.