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

TestExecution

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

A single test executed in a single environment.

interface TestExecution {
environment?: Environment;
id?: string;
matrixId?: string;
projectId?: string;
shard?: Shard;
state?:
| "TEST_STATE_UNSPECIFIED"
| "VALIDATING"
| "PENDING"
| "RUNNING"
| "FINISHED"
| "ERROR"
| "UNSUPPORTED_ENVIRONMENT"
| "INCOMPATIBLE_ENVIRONMENT"
| "INCOMPATIBLE_ARCHITECTURE"
| "CANCELLED"
| "INVALID";
testDetails?: TestDetails;
testSpecification?: TestSpecification;
timestamp?: Date;
toolResultsStep?: ToolResultsStep;
}

§Properties

§
environment?: Environment
[src]

Output only. How the host machine(s) are configured.

§
id?: string
[src]

Output only. Unique id set by the service.

§
matrixId?: string
[src]

Output only. Id of the containing TestMatrix.

§
projectId?: string
[src]

Output only. The cloud project that owns the test execution.

§
shard?: Shard
[src]

Output only. Details about the shard.

§
state?: "TEST_STATE_UNSPECIFIED" | "VALIDATING" | "PENDING" | "RUNNING" | "FINISHED" | "ERROR" | "UNSUPPORTED_ENVIRONMENT" | "INCOMPATIBLE_ENVIRONMENT" | "INCOMPATIBLE_ARCHITECTURE" | "CANCELLED" | "INVALID"
[src]

Output only. Indicates the current progress of the test execution (e.g., FINISHED).

§
testDetails?: TestDetails
[src]

Output only. Additional details about the running test.

§
testSpecification?: TestSpecification
[src]

Output only. How to run the test.

§
timestamp?: Date
[src]

Output only. The time this test execution was initially created.

§
toolResultsStep?: ToolResultsStep
[src]

Output only. Where the results for this execution are written.