diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f1953540b..117f6a47d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: jobs: buildWithSubmodule: - name: Build with Submodule + name: Run Unit Test runs-on: macos-latest strategy: matrix: @@ -52,6 +52,7 @@ jobs: npm ci npm run bundle AndroidIntegrationTest: + name: Run Android Integration Test runs-on: ubuntu-latest strategy: matrix: @@ -83,7 +84,7 @@ jobs: profile: Nexus 6 script: npm run integration-android IOSIntegrationTest: - name: Build with Submodule + name: Run iOS Integration Test runs-on: macos-latest strategy: matrix: diff --git a/src/device-managers/IOSDeviceManager.ts b/src/device-managers/IOSDeviceManager.ts index 5eb4c244d..45b0c2534 100644 --- a/src/device-managers/IOSDeviceManager.ts +++ b/src/device-managers/IOSDeviceManager.ts @@ -278,6 +278,8 @@ export default class IOSDeviceManager implements IDeviceManager { //log.debug(`Build Simulators: ${JSON.stringify(buildSimulators)}`); const deviceTypes = await list.devicetypes; for await (const device of buildSimulators) { + console.log('DeviceTypes', deviceTypes); + console.log('Device', device); const productModel = IOSDeviceManager.getProductModel(deviceTypes, device); const wdaLocalPort = await getFreePort(); const mjpegServerPort = await getFreePort();