Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IosTestSetup

import type { IosTestSetup } from "https://googleapis.deno.dev/v1/testing:v1.ts";

A description of how to set up an iOS device prior to running the test.

interface IosTestSetup {
additionalIpas?: FileReference[];
networkProfile?: string;
pullDirectories?: IosDeviceFile[];
pushFiles?: IosDeviceFile[];
}

§Properties

§
additionalIpas?: FileReference[]
[src]

iOS apps to install in addition to those being directly tested.

§
networkProfile?: string
[src]

The network traffic profile used for running the test. Available network profiles can be queried by using the NETWORK_CONFIGURATION environment type when calling TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.

§
pullDirectories?: IosDeviceFile[]
[src]

List of directories on the device to upload to Cloud Storage at the end of the test. Directories should either be in a shared directory (such as /private/var/mobile/Media) or within an accessible directory inside the app's filesystem (such as /Documents) by specifying the bundle ID.

§
pushFiles?: IosDeviceFile[]
[src]

List of files to push to the device before starting the test.