UNPKG

html-reporter

Version:

Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.

10 lines (9 loc) 356 B
import type { TestCollection } from 'testplane'; export interface TestRunner { run<U>(handler: (testCollection: TestCollection) => U): U; } export declare class BaseRunner implements TestRunner { protected _collection: TestCollection; constructor(collection: TestCollection); run<U>(runHandler: (testCollection: TestCollection) => U): U; }