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

TestReportSummary

import type { TestReportSummary } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

Information about a test report.

interface TestReportSummary {
durationInNanoSeconds: number;
statusCounts: {
[key: string]: number | null | undefined;
}
;
total: number;
}

§Properties

§
durationInNanoSeconds: number
[src]

The number of nanoseconds it took to run all of the test cases in this report.

§
statusCounts: {
[key: string]: number | null | undefined;
}
[src]

A map that contains the number of each type of status returned by the test results in this TestReportSummary.

§
total: number
[src]

The number of test cases in this TestReportSummary. The total includes truncated test cases.