stryker
Version:
The extendable JavaScript mutation testing framework
13 lines • 634 B
TypeScript
import { Reporter, ScoreResult } from 'stryker-api/report';
import DashboardReporterClient from './DashboardReporterClient';
import { Logger } from 'stryker-api/logging';
export default class DashboardReporter implements Reporter {
private readonly log;
private readonly dashboardReporterClient;
private readonly ciProvider;
static readonly inject: ["logger", "dashboardReporterClient"];
constructor(log: Logger, dashboardReporterClient: DashboardReporterClient);
private readEnvironmentVariable;
onScoreCalculated(ScoreResult: ScoreResult): Promise<void>;
}
//# sourceMappingURL=DashboardReporter.d.ts.map