UNPKG

@sectester/reporter

Version:

Provide an abstraction for generating test results as part of the particular test frameworks.

8 lines (7 loc) 262 B
export type GitLabReportFormat = 'code-quality' | 'test' | 'both'; export interface GitLabConfig { codeQualityReportFilename: string; testReportFilename: string; reportFormat?: GitLabReportFormat; } export declare const GITLAB_CONFIG: unique symbol;