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

Test

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

Represents a condition that is evaluated.

interface Test {
arn?: string | null;
counters?: Counters | null;
created?: Date | number | null;
deviceMinutes?: DeviceMinutes | null;
message?: string | null;
name?: string | null;
result?: ExecutionResult | null;
started?: Date | number | null;
status?: ExecutionStatus | null;
stopped?: Date | number | null;
type?: TestType | null;
}

§Properties

§
arn?: string | null
[src]

The test's ARN.

§
counters?: Counters | null
[src]

The test's result counters.

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

When the test was created.

§
deviceMinutes?: DeviceMinutes | null
[src]

Represents the total (metered or unmetered) minutes used by the test.

§
message?: string | null
[src]

A message about the test's result.

§
name?: string | null
[src]

The test's name.

§
result?: ExecutionResult | null
[src]

The test's result.

Allowed values include:

  • PENDING
  • PASSED
  • WARNED
  • FAILED
  • SKIPPED
  • ERRORED
  • STOPPED
§
started?: Date | number | null
[src]

The test's start time.

§
status?: ExecutionStatus | null
[src]

The test's status.

Allowed values include:

  • PENDING
  • PENDING_CONCURRENCY
  • PENDING_DEVICE
  • PROCESSING
  • SCHEDULING
  • PREPARING
  • RUNNING
  • COMPLETED
  • STOPPING
§
stopped?: Date | number | null
[src]

The test's stop time.

§
type?: TestType | null
[src]

The test's type.

Must be one of the following values:

  • BUILTIN_FUZZ
  • BUILTIN_EXPLORER Note: For Android, an app explorer that traverses an Android app, interacting with it and capturing screenshots at the same time.
  • APPIUM_JAVA_JUNIT
  • APPIUM_JAVA_TESTNG
  • APPIUM_PYTHON
  • APPIUM_NODE
  • APPIUM_RUBY
  • APPIUM_WEB_JAVA_JUNIT
  • APPIUM_WEB_JAVA_TESTNG
  • APPIUM_WEB_PYTHON
  • APPIUM_WEB_NODE
  • APPIUM_WEB_RUBY
  • CALABASH
  • INSTRUMENTATION
  • UIAUTOMATION
  • UIAUTOMATOR
  • XCTEST
  • XCTEST_UI