UNPKG

@sectester/reporter

Version:

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

12 lines (11 loc) 394 B
import type { CodeQualityReport } from '../types'; import { Issue } from '@sectester/scan'; export declare class CodeQualityReportBuilder { private readonly issues; private readonly testFilePath; constructor(issues: Issue[], testFilePath: string); build(): CodeQualityReport; private convertIssueToCodeQualityIssue; private createFingerprint; private mapSeverity; }