cumulocity-cypress
Version:
Cypress commands for Cumulocity IoT
17 lines (16 loc) • 471 B
TypeScript
import { C8yClient } from "../../shared/c8yclient";
declare global {
interface ChainableWithState {
state(state: "window"): Cypress.AUTWindow;
state(state: "c8yclient"): C8yClient | undefined;
state(state: "c8yclient", value: C8yClient | undefined): void;
}
namespace Cypress {
interface Cypress {
errorMessages: any;
}
interface LogConfig {
renderProps(): ObjectLike;
}
}
}