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

Problem

import type { Problem } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";

Represents a specific warning or failure.

interface Problem {
device?: Device | null;
job?: ProblemDetail | null;
message?: string | null;
result?: ExecutionResult | null;
run?: ProblemDetail | null;
suite?: ProblemDetail | null;
test?: ProblemDetail | null;
}

§Properties

§
device?: Device | null
[src]

Information about the associated device.

§
job?: ProblemDetail | null
[src]

Information about the associated job.

§
message?: string | null
[src]

A message about the problem's result.

§
result?: ExecutionResult | null
[src]

The problem's result.

Allowed values include:

  • PENDING
  • PASSED
  • WARNED
  • FAILED
  • SKIPPED
  • ERRORED
  • STOPPED
§
run?: ProblemDetail | null
[src]

Information about the associated run.

§
suite?: ProblemDetail | null
[src]

Information about the associated suite.

§
test?: ProblemDetail | null
[src]

Information about the associated test.