html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
9 lines (8 loc) • 407 B
TypeScript
import { PlaywrightTestAdapter, type PwtRawTest } from '../test/playwright';
import type { TestCollectionAdapter } from './';
export declare class PlaywrightTestCollectionAdapter implements TestCollectionAdapter {
private _testAdapters;
static create<T>(this: new (tests: PwtRawTest[]) => T, tests: PwtRawTest[]): T;
constructor(tests: PwtRawTest[]);
get tests(): PlaywrightTestAdapter[];
}