mirror of
https://github.com/status-im/react-native.git
synced 2025-01-30 03:05:44 +00:00
0c8a3e4f79
Summary: Solves https://github.com/facebook/react-native/issues/13034 Now the `ScrollView` mock has all the methods available. React Native tests pass. To test this specific part of the code, ```sh $ react-native init Test $ cd Test/ $ yarn add react-navigation ``` Then, add a simple project that uses `react-navigation`: ```js import React from 'react'; import { Text } from 'react-native'; import { StackNavigator } from 'react-navigation'; class HomeScreen extends React.Component { static navigationOptions = { title: 'Welcome', }; render() { return <Text>Hello, Navigation!</Text>; } } const SimpleApp = StackNavigator({ Home: { screen: HomeScreen }, }); export default SimpleApp ``` Run the default render tests: ```js $ npm run test ``` Closes https://github.com/facebook/react-native/pull/13048 Differential Revision: D4746028 Pulled By: shergin fbshipit-source-id: cb1791978d15be7f5d14b7b22979388066ad6caa
41 lines
929 B
JavaScript
41 lines
929 B
JavaScript
/**
|
|
* Copyright (c) 2013-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.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
/* eslint-env jest */
|
|
|
|
'use strict';
|
|
|
|
declare var jest: any;
|
|
|
|
const React = require('React');
|
|
const View = require('View');
|
|
|
|
const requireNativeComponent = require('requireNativeComponent');
|
|
|
|
const RCTScrollView = requireNativeComponent('RCTScrollView');
|
|
|
|
const ScrollViewComponent = jest.genMockFromModule('ScrollView');
|
|
|
|
class ScrollViewMock extends ScrollViewComponent {
|
|
render() {
|
|
return (
|
|
<RCTScrollView {...this.props}>
|
|
{this.props.refreshControl}
|
|
<View>
|
|
{this.props.children}
|
|
</View>
|
|
</RCTScrollView>
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = ScrollViewMock;
|