@alphabin/trx
Version:
TRX reporter for Playwright tests with Azure Blob Storage upload support
22 lines (21 loc) • 569 B
TypeScript
import { TestReportXOptions } from './types';
/**
* Configuration class for TRX reporter
*/
export declare class Config {
private options;
constructor(options: Partial<TestReportXOptions>);
/**
* Gets the configuration options
*/
get(): TestReportXOptions;
/**
* Checks if upload is enabled
*/
isUploadEnabled(): boolean;
/**
* Creates a configuration from a playwright config file
*/
static fromPlaywrightConfig(configDir: string, options?: Partial<TestReportXOptions>): Config;
}
export default Config;