Skip to content

Commit

Permalink
chore: fix runtime test
Browse files Browse the repository at this point in the history
  • Loading branch information
2heal1 committed Sep 11, 2024
1 parent def2081 commit 2fbd6cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/runtime/__tests__/shares.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ describe('shared', () => {
const reactInstance2Res = reactInstance2();
assert(reactInstance1Res, "reactInstance1 can't be undefined");
assert(reactInstance2Res, "reactInstance2 can't be undefined");
expect(reactInstance1Res.uniqueId).toBe(2);
expect(reactInstance2Res.uniqueId).toBe(2);
expect(reactInstance1Res.uniqueId).toBe(1);
expect(reactInstance2Res.uniqueId).toBe(1);
expect(reactInstance1Res).toStrictEqual(reactInstance2Res);
});

Expand Down

0 comments on commit 2fbd6cb

Please sign in to comment.