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

TestCaseRun

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

Provides the test case run.

interface TestCaseRun {
endTime?: Date | number | null;
failure?: string | null;
logUrl?: string | null;
startTime?: Date | number | null;
status?: Status | null;
testCaseDefinitionId?: string | null;
testCaseDefinitionName?: string | null;
testCaseRunId?: string | null;
warnings?: string | null;
}

§Properties

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

Provides test case run end time.

§
failure?: string | null
[src]

Provides test case run failure result.

§
logUrl?: string | null
[src]

Provides test case run log URL.

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

Provides test case run start time.

§
status?: Status | null
[src]

Provides the test case run status. Status is one of the following:

  • PASS: Test passed.
  • FAIL: Test failed.
  • PENDING: Test has not started running but is scheduled.
  • RUNNING: Test is running.
  • STOPPING: Test is performing cleanup steps. You will see this status only if you stop a suite run.
  • STOPPED Test is stopped. You will see this status only if you stop a suite run.
  • PASS_WITH_WARNINGS: Test passed with warnings.
  • ERORR: Test faced an error when running due to an internal issue.
§
testCaseDefinitionId?: string | null
[src]

Provides the test case run definition ID.

§
testCaseDefinitionName?: string | null
[src]

Provides the test case run definition name.

§
testCaseRunId?: string | null
[src]

Provides the test case run ID.

§
warnings?: string | null
[src]

Provides test case run warnings.