1.0.0 • Published 7 years ago

react-native-testid v1.0.0

Weekly downloads
366
License
MIT
Repository
github
Last release
7 years ago

react-native-testid

A convenient way to set test id for React-Native components

Usage

import React from 'react'
import { View, Text } from 'react-native'
import testID from 'react-native-testid'

function SuperComponent({ testId }) {
  return (
    <View {...testID(testId)}>
      <Text>My Super Component</Text>
    </View>
  )
}