UNPKG

html-reporter

Version:

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

11 lines (10 loc) 459 B
import { SqliteClient } from './sqlite-client'; import { ImageInfo, TestSpecByPath } from './types'; export interface ImageStore { getLastImageInfoFromDb(testResult: TestSpecByPath, stateName?: string): ImageInfo | undefined; } export declare class SqliteImageStore implements ImageStore { private _dbClient; constructor(dbClient: SqliteClient); getLastImageInfoFromDb(testResult: TestSpecByPath, stateName?: string): ImageInfo | undefined; }