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

CancelTestMatrixResponse

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

Response containing the current state of the specified test matrix.

interface CancelTestMatrixResponse {
testState?:
| "TEST_STATE_UNSPECIFIED"
| "VALIDATING"
| "PENDING"
| "RUNNING"
| "FINISHED"
| "ERROR"
| "UNSUPPORTED_ENVIRONMENT"
| "INCOMPATIBLE_ENVIRONMENT"
| "INCOMPATIBLE_ARCHITECTURE"
| "CANCELLED"
| "INVALID";
}

§Properties

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

The current rolled-up state of the test matrix. If this state is already final, then the cancelation request will have no effect.