/** * 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 */ 'use strict'; const React = require('react'); const { Image, StyleSheet, Text, TextInput, TouchableHighlight, TouchableOpacity, TouchableWithoutFeedback, View, } = require('react-native'); const TouchableBounce = require('react-native/Libraries/Components/Touchable/TouchableBounce'); /** * All the views implemented on Android, each with the testID property set. * We test that: * - The app renders fine * - The testID property is passed to the native views */ class TestIdTestApp extends React.Component { render() { return ( text TouchableBounce TouchableHighlight TouchableOpacity TouchableWithoutFeedback ); } } const styles = StyleSheet.create({ base: { width: 150, height: 50, }, }); module.exports = { TestIdTestApp: TestIdTestApp, };