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

TestSuiteOverview

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

A summary of a test suite result either parsed from XML or uploaded directly by a user. Note: the API related comments are for StepService only. This message is also being used in ExecutionService in a read only mode for the corresponding step.

interface TestSuiteOverview {
elapsedTime?: Duration;
errorCount?: number;
failureCount?: number;
flakyCount?: number;
name?: string;
skippedCount?: number;
totalCount?: number;
xmlSource?: FileReference;
}

§Properties

§
elapsedTime?: Duration
[src]

Elapsed time of test suite.

§
errorCount?: number
[src]

Number of test cases in error, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never

§
failureCount?: number
[src]

Number of failed test cases, typically set by the service by parsing the xml_source. May also be set by the user. - In create/response: always set - In update request: never

§
flakyCount?: number
[src]

Number of flaky test cases, set by the service by rolling up flaky test attempts. Present only for rollup test suite overview at environment level. A step cannot have flaky test cases.

§
name?: string
[src]

The name of the test suite. - In create/response: always set - In update request: never

§
skippedCount?: number
[src]

Number of test cases not run, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never

§
totalCount?: number
[src]

Number of test cases, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never

§
xmlSource?: FileReference
[src]

If this test suite was parsed from XML, this is the URI where the original XML file is stored. Note: Multiple test suites can share the same xml_source Returns INVALID_ARGUMENT if the uri format is not supported. - In create/response: optional - In update request: never