UNPKG

cypress-xray-plugin

Version:

A Cypress plugin for uploading test results to Xray (test management for Jira)

31 lines (30 loc) 646 B
import type { StatusCategory } from "./status-category"; export interface StatusDetails { /** * The description of the status. */ description?: string; /** * The URL of the icon used to represent the status. */ iconUrl?: string; /** * The ID of the status. */ id?: string; /** * The name of the status. */ name?: string; /** * The URL of the status. */ self?: string; /** * The category assigned to the status. */ statusCategory?: StatusCategory; } export interface StatusDetailsServer extends StatusDetails { statusColor?: string; }