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

Report

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

Information about the results from running a series of test cases during the run of a build project. The test cases are specified in the buildspec for the build project using one or more paths to the test case files. You can specify any type of tests you want, such as unit tests, integration tests, and functional tests.

interface Report {
arn?: string | null;
codeCoverageSummary?: CodeCoverageReportSummary | null;
created?: Date | number | null;
executionId?: string | null;
expired?: Date | number | null;
exportConfig?: ReportExportConfig | null;
name?: string | null;
reportGroupArn?: string | null;
status?: ReportStatusType | null;
testSummary?: TestReportSummary | null;
truncated?: boolean | null;
type?: ReportType | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the report run.

§
codeCoverageSummary?: CodeCoverageReportSummary | null
[src]

A CodeCoverageReportSummary object that contains a code coverage summary for this report.

§
created?: Date | number | null
[src]

The date and time this report run occurred.

§
executionId?: string | null
[src]

The ARN of the build run that generated this report.

§
expired?: Date | number | null
[src]

The date and time a report expires. A report expires 30 days after it is created. An expired report is not available to view in CodeBuild.

§
exportConfig?: ReportExportConfig | null
[src]

Information about where the raw data used to generate this report was exported.

§
name?: string | null
[src]

The name of the report that was run.

§
reportGroupArn?: string | null
[src]

The ARN of the report group associated with this report.

§
status?: ReportStatusType | null
[src]

The status of this report.

§
testSummary?: TestReportSummary | null
[src]

A TestReportSummary object that contains information about this test report.

§
truncated?: boolean | null
[src]

A boolean that specifies if this report run is truncated. The list of test cases is truncated after the maximum number of test cases is reached.

§
type?: ReportType | null
[src]

The type of the report that was run.

CODE_COVERAGE: A code coverage report.

TEST: A test report.