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

IndividualOutcome

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

Step Id and outcome of each individual step that was run as a group with other steps with the same configuration.

interface IndividualOutcome {
multistepNumber?: number;
outcomeSummary?:
| "unset"
| "success"
| "failure"
| "inconclusive"
| "skipped"
| "flaky";
runDuration?: Duration;
stepId?: string;
}

§Properties

§
multistepNumber?: number
[src]

Unique int given to each step. Ranges from 0(inclusive) to total number of steps(exclusive). The primary step is 0.

§
outcomeSummary?: "unset" | "success" | "failure" | "inconclusive" | "skipped" | "flaky"
[src]
§
runDuration?: Duration
[src]

How long it took for this step to run.

§
stepId?: string
[src]