umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
19 lines (18 loc) • 596 B
TypeScript
export default class CommandBase {
_commandName: any;
_relativeBackOfficePath: any;
_cy: any;
_cypress: any;
get commandName(): any;
set commandName(commandName: any);
get relativeBackOfficePath(): any;
get cy(): any;
get cypress(): any;
constructor(relativeBackOfficePath: any, cy?: any, cypress?: any);
method(a: any, b: any, c: any, d: any, e: any, f: any, g: any): void;
getCommand(): {
name: any;
method: (a: any, b: any, c: any, d: any, e: any, f: any, g: any) => void;
};
registerCommand(): void;
}