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

IosTestLoop

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

A test of an iOS application that implements one or more game loop scenarios. This test type accepts an archived application (.ipa file) and a list of integer scenarios that will be executed on the app sequentially.

interface IosTestLoop {
appBundleId?: string;
appIpa?: FileReference;
scenarios?: number[];
}

§Properties

§
appBundleId?: string
[src]

Output only. The bundle id for the application under test.

§

Required. The .ipa of the application to test.

§
scenarios?: number[]
[src]

The list of scenarios that should be run during the test. Defaults to the single scenario 0 if unspecified.