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) 367 B
import { BaseRunner } from './runner'; import type { TestSpec } from '../../types'; import type { TestCollection } from 'testplane'; export declare class SpecificTestRunner extends BaseRunner { private _tests; constructor(collection: TestCollection, tests: TestSpec[]); run<U>(runHandler: (testCollection: TestCollection) => U): U; private _filter; }