UNPKG

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) 325 B
import { ReporterTestResult } from '../index'; import { DbTestResult } from '../../../sqlite-client'; interface Options { baseHost?: string; } export declare class DbTestResultTransformer { private _options; constructor(options: Options); transform(testResult: ReporterTestResult): DbTestResult; } export {};