Provi-Engineering / react-native-testid

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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>
  )
}

About

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

License:MIT License


Languages

Language:JavaScript 100.0%