@forgedock/fd-fastest-reporter-md
v1.0.0
Published
Markdown report generator for FD-Fastest
Maintainers
Readme
@fd-fastest/reporter-md
Markdown report generator for FD-Fastest performance reports. Transforms the JSON report produced by @fd-fastest/reporter-json into human-readable Markdown for pull requests, dashboards, or release notes.
Usage
import {
generateMarkdownReport,
generateCompactSummary,
} from '@fd-fastest/reporter-md';
import type { Report } from '@fd-fastest/reporter-json';
declare const report: Report;
const fullReport = generateMarkdownReport(report);
const compactSummary = generateCompactSummary(report);Run pnpm build to produce the compiled output and pnpm test to execute the Vitest suite.
