タグ

2021年3月11日のブックマーク (1件)

  • React Nativeアプリをテスト · Jest

    Facebookでは、Jestを使用して React Native アプリケーションをテストします。 動く React Native アプリケーションのテストに関するより深い知見は以下のシリーズを読むことで得てください: Part 1: Jest – Snapshot come into play、Part 2: Jest – Redux Snapshots for your Actions and Reducers セットアップ​ react-native 0.38 より react-native init コマンドに Jest セットアップがデフォルトで含まれています。 以下の設定が自動的に package.json ファイルに追加されます。 { "scripts": { "test": "jest" }, "jest": { "preset": "react-native" } }

    React Nativeアプリをテスト · Jest
    toshi3221
    toshi3221 2021/03/11
    Jestを使用してReactNativeテスト。nativeモジュールをmockしてスナップショットテストする