mirror of
https://github.com/status-im/react-native.git
synced 2025-02-11 17:07:09 +00:00
Summary: This removes `node_modules/react` from the list of directories that are used for haste module resolutions. Modules required from React are now imported with `require('react/lib/…')`. Reviewed By: astreet Differential Revision: D3509863 fbshipit-source-id: 32cd34e2b8496f0a6676dbe6bb1eacc18124c01e
33 lines
902 B
JavaScript
33 lines
902 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
jest.disableAutomock();
|
|
|
|
jest.mock('NativeModules')
|
|
.mock('Text')
|
|
.mock('ensureComponentIsNative')
|
|
.mock('View');
|
|
|
|
const React = require('React');
|
|
const ReactTestRenderer = require('react/lib/ReactTestRenderer');
|
|
const Text = require('Text');
|
|
const TouchableHighlight = require('TouchableHighlight');
|
|
|
|
describe('TouchableHighlight', () => {
|
|
it('renders correctly', () => {
|
|
const instance = ReactTestRenderer.create(
|
|
<TouchableHighlight style={{}}>
|
|
<Text>Touchable</Text>
|
|
</TouchableHighlight>
|
|
);
|
|
|
|
expect(instance.toJSON()).toMatchSnapshot();
|
|
});
|
|
});
|