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

AndroidTestLoop

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

A test of an Android Application with a Test Loop. The intent \ will be implicitly added, since Games is the only user of this api, for the time being.

interface AndroidTestLoop {
appApk?: FileReference;
appBundle?: AppBundle;
appPackageId?: string;
scenarioLabels?: string[];
scenarios?: number[];
}

§Properties

§

The APK for the application under test.

§
appBundle?: AppBundle
[src]

A multi-apk app bundle for the application under test.

§
appPackageId?: string
[src]

The java package for the application under test. The default is determined by examining the application's manifest.

§
scenarioLabels?: string[]
[src]

The list of scenario labels that should be run during the test. The scenario labels should map to labels defined in the application's manifest. For example, player_experience and com.google.test.loops.player_experience add all of the loops labeled in the manifest with the com.google.test.loops.player_experience name to the execution. Scenarios can also be specified in the scenarios field.

§
scenarios?: number[]
[src]

The list of scenarios that should be run during the test. The default is all test loops, derived from the application's manifest.