UNPKG

@mochify/mochify

Version:

Run mocha tests in headless browsers

7 lines (6 loc) 219 B
export type MochifyDriverEvaluate = (script: string) => Promise<any>; export type MochifyDriverEnd = () => Promise<void>; export type MochifyDriver = { evaluate: MochifyDriverEvaluate; end: MochifyDriverEnd; };