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

InconclusiveDetail

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

Details for an outcome with an INCONCLUSIVE outcome summary.

interface InconclusiveDetail {
abortedByUser?: boolean;
hasErrorLogs?: boolean;
infrastructureFailure?: boolean;
}

§Properties

§
abortedByUser?: boolean
[src]

If the end user aborted the test execution before a pass or fail could be determined. For example, the user pressed ctrl-c which sent a kill signal to the test runner while the test was running.

§
hasErrorLogs?: boolean
[src]

If results are being provided to the user in certain cases of infrastructure failures

§
infrastructureFailure?: boolean
[src]

If the test runner could not determine success or failure because the test depends on a component other than the system under test which failed. For example, a mobile test requires provisioning a device where the test executes, and that provisioning can fail.