@helpscout/cyan
Version:
Cypress-like Testing for React + JSDOM
17 lines (16 loc) • 414 B
TypeScript
import CyanInterface from '../types/Cyan.interface.types';
interface Cyan extends CyanInterface {
}
declare class Cyan {
el: Array<any>;
length: number;
constructor(el?: any);
get(selector: any): this;
getByCy(selector: any): this;
getByText(text: any): this;
getEl(): any[];
getNodes(): any[];
getNode(): any;
__getNode(fn: any, selector: any): any;
}
export default Cyan;