@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
17 lines • 499 B
TypeScript
/**
* A call to postMessage
* @deprecated Will be removed in v13, please use Playwright instead
*/
export interface PostMessageCall {
/** Data passed in the message */
data: any;
/** Target origin passed in the message */
targetOrigin: string;
/** Timestamp of the message */
timestamp: Date;
}
/**
* @deprecated Will be removed in v13, please use Playwright instead
*/
export type ConditionFn = (postCall: PostMessageCall) => boolean;
//# sourceMappingURL=core.d.ts.map