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

GoogleCloudDialogflowCxV3ContinuousTestResult

import type { GoogleCloudDialogflowCxV3ContinuousTestResult } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

Represents a result from running a test case in an agent environment.

interface GoogleCloudDialogflowCxV3ContinuousTestResult {
name?: string;
result?: "AGGREGATED_TEST_RESULT_UNSPECIFIED" | "PASSED" | "FAILED";
runTime?: Date;
testCaseResults?: string[];
}

§Properties

§
name?: string
[src]

The resource name for the continuous test result. Format: projects//locations//agents//environments//continuousTestResults/.

§
result?: "AGGREGATED_TEST_RESULT_UNSPECIFIED" | "PASSED" | "FAILED"
[src]

The result of this continuous test run, i.e. whether all the tests in this continuous test run pass or not.

§
runTime?: Date
[src]

Time when the continuous testing run starts.

§
testCaseResults?: string[]
[src]

A list of individual test case results names in this continuous test run.