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