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

PrimaryStep

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

Stores rollup test status of multiple steps that were run as a group and outcome of each individual step.

interface PrimaryStep {
individualOutcome?: IndividualOutcome[];
rollUp?:
| "unset"
| "success"
| "failure"
| "inconclusive"
| "skipped"
| "flaky";
}

§Properties

§
individualOutcome?: IndividualOutcome[]
[src]

Step Id and outcome of each individual step.

§
rollUp?: "unset" | "success" | "failure" | "inconclusive" | "skipped" | "flaky"
[src]

Rollup test status of multiple steps that were run with the same configuration as a group.