Skip to content

Commit

Permalink
Update crates/typescript-tests/src/enums.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Liam Murphy <[email protected]>
  • Loading branch information
thomasetter and Liamolucko authored Feb 7, 2024
1 parent c167c8d commit ade7304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/typescript-tests/src/enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test("construction", () => {
expect(b1).toStrictEqual(b2);
const b3: wbg.Foo.B = 3;
expect(b1).toStrictEqual(b3);
expect(() => { return a1 as wbg.Foo != b1 }).toBeTruthy();
expect(a1).not.toStrictEqual(b1);
});

test("function calls", () => {
Expand Down

0 comments on commit ade7304

Please sign in to comment.