Files
react-native/Libraries/Modal/__tests__/Modal-test.js
T
Rick Hanlon 4b935ae95f Correctly mock all components by setting the displayName
Summary:
In the next react sync we removed the `displayName` from forwardRef and useMemo components ([PR here](https://github.com/facebook/react/pull/18495 )).

This means we need to manually add the displayName in the mock.

Changelog: [General] [Fixed] Fix test renderer mocks to use the displayName more often.

Reviewed By: TheSavior

Differential Revision: D22775470

fbshipit-source-id: 1390dc325e34f7ccea32bbdf1c6a8f6efea3a080
2020-07-28 13:09:06 -07:00

61 lines
1.3 KiB
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @emails oncall+react_native
* @flow strict-local
*/
'use strict';
const React = require('react');
const View = require('../../Components/View/View');
const Modal = require('../Modal');
const render = require('../../../jest/renderer');
describe('<Modal />', () => {
it('should render as <Modal> when mocked', () => {
const instance = render.create(
<Modal>
<View />
</Modal>,
);
expect(instance).toMatchSnapshot();
});
it('should shallow render as <Modal> when mocked', () => {
const output = render.shallow(
<Modal>
<View />
</Modal>,
);
expect(output).toMatchSnapshot();
});
it('should shallow render as <Modal> when not mocked', () => {
jest.dontMock('../Modal');
const output = render.shallow(
<Modal>
<View />
</Modal>,
);
expect(output).toMatchSnapshot();
});
it('should render as <RCTModalHostView> when not mocked', () => {
jest.dontMock('../Modal');
const instance = render.create(
<Modal>
<View />
</Modal>,
);
expect(instance).toMatchSnapshot();
});
});