playwright-cleanup
Version:
A Playwright cleanup plugin
10 lines (9 loc) • 322 B
TypeScript
import { Cleanup } from "../entities/cleanup";
import { Options } from "../entities/options";
export declare const playwrightCleanup: {
cleanup: ({ cleanupOptions }: any, use: (arg0: Cleanup) => any) => Promise<void>;
};
export type PlaywrightCleanup = {
cleanup: Cleanup;
};
export type CleanupOptions = Options;