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

Environment

import type { Environment } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

An Environment represents the set of test runs (Steps) from the parent Execution that are configured with the same set of dimensions (Model, Version, Locale, and Orientation). Multiple such runs occur particularly because of features like sharding (splitting up a test suite to run in parallel across devices) and reruns (running a test multiple times to check for different outcomes).

interface Environment {
completionTime?: Timestamp;
creationTime?: Timestamp;
dimensionValue?: EnvironmentDimensionValueEntry[];
displayName?: string;
environmentId?: string;
environmentResult?: MergedResult;
executionId?: string;
historyId?: string;
projectId?: string;
resultsStorage?: ResultsStorage;
shardSummaries?: ShardSummary[];
}

§Properties

§
completionTime?: Timestamp
[src]

Output only. The time when the Environment status was set to complete. This value will be set automatically when state transitions to COMPLETE.

§
creationTime?: Timestamp
[src]

Output only. The time when the Environment was created.

§

Dimension values describing the environment. Dimension values always consist of "Model", "Version", "Locale", and "Orientation". - In response: always set - In create request: always set - In update request: never set

§
displayName?: string
[src]

A short human-readable name to display in the UI. Maximum of 100 characters. For example: Nexus 5, API 27.

§
environmentId?: string
[src]

Output only. An Environment id.

§
environmentResult?: MergedResult
[src]

Merged result of the environment.

§
executionId?: string
[src]

Output only. An Execution id.

§
historyId?: string
[src]

Output only. A History id.

§
projectId?: string
[src]

Output only. A Project id.

§
resultsStorage?: ResultsStorage
[src]

The location where output files are stored in the user bucket.

§
shardSummaries?: ShardSummary[]
[src]

Output only. Summaries of shards. Only one shard will present unless sharding feature is enabled in TestExecutionService.