cypress-xray-plugin
Version:
A Cypress plugin for uploading test results to Xray (test management for Jira)
15 lines (14 loc) • 525 B
TypeScript
import type { XrayClient } from "../../../../client/xray/xray-client";
import type { ImportFeatureResponse } from "../../../../types/xray/responses/import-feature";
import { Command } from "../../../command";
interface Parameters {
filePath: string;
projectId?: string;
projectKey?: string;
source?: string;
xrayClient: XrayClient;
}
export declare class ImportFeatureCommand extends Command<ImportFeatureResponse, Parameters> {
protected computeResult(): Promise<ImportFeatureResponse>;
}
export {};