に加えて、
であなたの現在の開始デバイス/シミュレータ/エミュレータをチェックしてください:あなたは、複数の接続されたデバイス/エミュレータを持っており、特定のものにテストしたいとき、私はまた、次のように提案することができ、TE同僚が提供するソリューション
TNSデバイス は、ご希望のデバイスを選択します(そのIDまたはデバイス識別子をコピー)し、以下を実行します
│ # │ Device Name │ Platform │ Device Identifier │ Type │ Status │
│ 1 │ vbox86p │ Android │ 192.168.56.101:5555 | Emulator │ Connected │
│ 2 │ iPhone 5 │ iOS │ f5ae7a02a8ba77fa572 │ Device │ Connected │
│ 3 │ iPhone 6 │ iOS │ 03AEBB35-4EC4-4DCC │ Emulator │ Connected |
TNSは、iOSを実行します - - デバイスID
または
TNSは、例えば、IOS --device deviceIdentifier
を実行します。
tns run android --device 1 // will run on Android device
tns run ios --device 3 // will run on the iOS emulator
tns run ios --device f5ae7a02a8ba77fa572 // will run on the iOS device
あなたはプラットフォームを追加しましたか? – Deepak