mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 11:34:23 +00:00
48ab5eb436
Summary: At the moment the run-ios command from the react-native cli does only work for simulators. The pull request adds a new option to the existing command: **"--device 'device-name'" which installs and launches an iOS application on a connected device.** This makes it easier to build a test environment using react-native for connected devices. I've tested my code with the following commands: react-native run-ios --device "Not existing device" react-native run-ios --device react-native run-ios --device "name-of-a-simulator" react-native run-ios --device "name-of-connected-device" Output of the first three commands: ![example_error_output](https://cloud.githubusercontent.com/assets/9102810/17669443/f53d5948-630d-11e6-9a80-7df2f352c6a3.png) Additional to the manual command tests i've added a test file 'parseIOSDevicesList-test.js'. I used **ios-deploy** In order to launch and install the .app-bundle on a connected device. ios-deploy on github: Closes https://github.com/facebook/react-native/pull/9414 Differential Revision: D3821638 Pulled By: javache fbshipit-source-id: c07b7bf25283a966e45613a22ed3184bb1aac714
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
jest.dontMock('../parseIOSDevicesList');
|
|
var parseIOSDevicesList = require('../parseIOSDevicesList');
|
|
|
|
describe('parseIOSDevicesList', () => {
|
|
it('parses typical output', () => {
|
|
var devices = parseIOSDevicesList([
|
|
'Known Devices:',
|
|
'Maxs MacBook Pro [11111111-1111-1111-1111-111111111111]',
|
|
"Max's iPhone (9.2) [11111111111111111111aaaaaaaaaaaaaaaaaaaa]",
|
|
'iPad 2 (9.3) [07538CE4-675B-4EDA-90F2-3DD3CD93309D] (Simulator)',
|
|
'iPad Air (9.3) [0745F6D1-6DC5-4427-B9A6-6FBA327ED65A] (Simulator)',
|
|
'iPhone 6s (9.3) [3DBE4ECF-9A86-469E-921B-EE0F9C9AB8F4] (Simulator)',
|
|
'Known Templates:',
|
|
'Activity Monitor',
|
|
'Blank',
|
|
'System Usage',
|
|
'Zombies'
|
|
].join('\n'));
|
|
|
|
expect(devices).toEqual([
|
|
{name: "Max's iPhone", udid: '11111111111111111111aaaaaaaaaaaaaaaaaaaa', version: '9.2'},
|
|
]);
|
|
});
|
|
|
|
it('ignores garbage', () => {
|
|
expect(parseIOSDevicesList('Something went terribly wrong (-42)')).toEqual([]);
|
|
});
|
|
});
|