cypress-xray-plugin
Version:
A Cypress plugin for uploading test results to Xray (test management for Jira)
10 lines (9 loc) • 459 B
TypeScript
import type { CypressRunResult } from "../../../types/cypress";
import type { Logger } from "../../../util/logging";
import type { Computable } from "../../command";
import { Command } from "../../command";
export declare class ExtractVideoFilesCommand extends Command<string[], null> {
private readonly cypressRunResult;
constructor(logger: Logger, cypressRunResult: Computable<CypressRunResult>);
protected computeResult(): Promise<string[]>;
}