エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
How to test that the renderItem function returns a <ListItem />?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
How to test that the renderItem function returns a <ListItem />?
I'm building my app with React Native and I do my unit tests with Jest and Enzyme. How can I test... I'm building my app with React Native and I do my unit tests with Jest and Enzyme. How can I test my <FlatList />'s renderItem() function? It returns a <ListItem /> from the React-Native-Elements library. Let me give you the example code: import { ListItem } from 'react-native-elements' export class MyList extends Component { const list = [ { name: 'Amy Farha', subtitle: 'Vice President' }, { name

