flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
12 lines (11 loc) • 323 B
TypeScript
import { AssertionContext } from './assertioncontext';
export declare class Assertion {
private _context;
private _statement;
constructor(context: AssertionContext, statement: any);
private _assert;
private _thatValue;
private _thisValue;
equals(value: any): void;
is(type: string): void;
}