Skip to content

Commit

Permalink
chore: trigger ci run
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjastrzebski committed Aug 25, 2023
1 parent 51e0571 commit 8e1332e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-native/Libraries/Modal/__tests__/Modal-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('<Modal />', () => {
<View testID="child" />
</Modal>,
);
expect(instance.toJSON()).toBeNull();
expect(instance.toJSON()).toBe(null);
});

it('should shallow render as <Modal> when mocked', () => {
Expand Down Expand Up @@ -74,6 +74,6 @@ describe('<Modal />', () => {
<View />
</Modal>,
);
expect(instance.toJSON()).toBeNull();
expect(instance.toJSON()).toBe(null);
});
});

0 comments on commit 8e1332e

Please sign in to comment.