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

FailureDetail

import type { FailureDetail } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

Details for an outcome with a FAILURE outcome summary.

interface FailureDetail {
crashed?: boolean;
deviceOutOfMemory?: boolean;
failedRoboscript?: boolean;
notInstalled?: boolean;
otherNativeCrash?: boolean;
timedOut?: boolean;
unableToCrawl?: boolean;
}

§Properties

§
crashed?: boolean
[src]

If the failure was severe because the system (app) under test crashed.

§
deviceOutOfMemory?: boolean
[src]

If the device ran out of memory during a test, causing the test to crash.

§
failedRoboscript?: boolean
[src]

If the Roboscript failed to complete successfully, e.g., because a Roboscript action or assertion failed or a Roboscript action could not be matched during the entire crawl.

§
notInstalled?: boolean
[src]

If an app is not installed and thus no test can be run with the app. This might be caused by trying to run a test on an unsupported platform.

§
otherNativeCrash?: boolean
[src]

If a native process (including any other than the app) crashed.

§
timedOut?: boolean
[src]

If the test overran some time limit, and that is why it failed.

§
unableToCrawl?: boolean
[src]

If the robo was unable to crawl the app; perhaps because the app did not start.