UNPKG

cypress-xray-plugin

Version:

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

10 lines (9 loc) 462 B
import type { FeatureFileIssueData } from "../../../types/cucumber/cucumber"; import type { Logger } from "../../../util/logging"; import type { Computable } from "../../command"; import { Command } from "../../command"; export declare class ExtractIssueKeysCommand extends Command<string[], null> { private readonly issueData; constructor(logger: Logger, issueData: Computable<FeatureFileIssueData>); protected computeResult(): Promise<string[]>; }