html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
12 lines (11 loc) • 533 B
TypeScript
import { TestplaneTestAdapter } from '../test/testplane';
import type { TestCollectionAdapter } from './';
import type { TestCollection } from 'testplane';
export declare class TestplaneTestCollectionAdapter implements TestCollectionAdapter {
private _testCollection;
private _testAdapters;
static create<T>(this: new (testCollection: TestCollection) => T, testCollection: TestCollection): T;
constructor(testCollection: TestCollection);
get original(): TestCollection;
get tests(): TestplaneTestAdapter[];
}