cybernaut
Version:
Reliable, automated web UI testing in BDD-style.
15 lines (14 loc) • 506 B
TypeScript
import { PredicateBuilder } from './core/predicate';
import { SeleniumTest } from './selenium/test';
export * from './selenium';
export declare class It {
readonly should: PredicateBuilder;
}
export declare const it: It;
export interface TestFunction {
(name: string, implementation: SeleniumTest): void;
only(name: string, implementation: SeleniumTest): void;
skip(name: string, implementation: SeleniumTest): void;
todo(name: string): void;
}
export declare const test: TestFunction;