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

TestCase

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

Information about a test case created using a framework such as NUnit or Cucumber. A test case might be a unit test or a configuration test.

interface TestCase {
durationInNanoSeconds?: number | null;
expired?: Date | number | null;
message?: string | null;
name?: string | null;
prefix?: string | null;
reportArn?: string | null;
status?: string | null;
testRawDataPath?: string | null;
}

§Properties

§
durationInNanoSeconds?: number | null
[src]

The number of nanoseconds it took to run this test case.

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

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

§
message?: string | null
[src]

A message associated with a test case. For example, an error message or stack trace.

§
name?: string | null
[src]

The name of the test case.

§
prefix?: string | null
[src]

A string that is applied to a series of related test cases. CodeBuild generates the prefix. The prefix depends on the framework used to generate the tests.

§
reportArn?: string | null
[src]

The ARN of the report to which the test case belongs.

§
status?: string | null
[src]

The status returned by the test case after it was run. Valid statuses are SUCCEEDED, FAILED, ERROR, SKIPPED, and UNKNOWN.

§
testRawDataPath?: string | null
[src]

The path to the raw data file that contains the test result.