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

AndroidMatrix

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

A set of Android device configuration permutations is defined by the the cross-product of the given axes. Internally, the given AndroidMatrix will be expanded into a set of AndroidDevices. Only supported permutations will be instantiated. Invalid permutations (e.g., incompatible models/versions) are ignored.

interface AndroidMatrix {
androidModelIds?: string[];
androidVersionIds?: string[];
locales?: string[];
orientations?: string[];
}

§Properties

§
androidModelIds?: string[]
[src]

Required. The ids of the set of Android device to be used. Use the TestEnvironmentDiscoveryService to get supported options.

§
androidVersionIds?: string[]
[src]

Required. The ids of the set of Android OS version to be used. Use the TestEnvironmentDiscoveryService to get supported options.

§
locales?: string[]
[src]

Required. The set of locales the test device will enable for testing. Use the TestEnvironmentDiscoveryService to get supported options.

§
orientations?: string[]
[src]

Required. The set of orientations to test with. Use the TestEnvironmentDiscoveryService to get supported options.