testplane
Version:
Tests framework based on mocha and wdio
14 lines (13 loc) • 320 B
TypeScript
import type { Browser } from "../types";
export type WaitForStaticToLoadResult = {
ready: true;
} | {
ready: false;
reason: string;
} | {
ready: false;
reason: "Resources are not loaded";
pendingResources: string[];
};
declare const _default: (browser: Browser) => void;
export default _default;