playwright-test
Version:
Run mocha, zora, uvu, tape and benchmark.js scripts inside real browsers with playwright.
21 lines • 446 B
TypeScript
/**
* Execute the queued tests.
*/
export function exec(): Promise<{
total: number;
done: number;
skips: number;
errors: string[];
}>;
/**
*
*/
export function hold(): void;
/**
* @typedef {import('./types.js').Suite} Suite
*/
export const test: import("./types.js").Suite;
export { suite } from "./harness.js";
export * from "./assert.js";
export type Suite = import("./types.js").Suite;
//# sourceMappingURL=index.d.ts.map