jest-native
Jest Native
是
React Native Testing Library
的配套库,为 Jest 提供自定义元素匹配器。
- npm
- Yarn
npm install --save-dev @testing-library/jest-native
yarn add --dev @testing-library/jest-native
const {queryByTestId} = render(
<View>
<View testID="not-empty">
<Text testID="empty" />
</View>
<Text testID="visible">Visible Example</Text>
</View>,
)
expect(queryByTestId('not-empty')).not.toBeEmpty()
注意:当使用其中一些匹配器时,你可能需要确保你使用查询函数( 如
queryByTestId
)而不是获取函数(如getByTestId
)。否则,get*
函数可能会 在你的断言之前抛出一个错误。
请查阅Jest Native 的文档,了解 可用匹配器的完整列表。