UNPKG

271 BPlain TextView Raw
1import istanbulReports from "istanbul-reports";
2import { VinylReporter } from "../reporter";
3import { wrapFileReporter } from "../wrap-istanbul-reporter";
4
5export function createHtmlReporter(): VinylReporter {
6 return wrapFileReporter(istanbulReports.create("html"));
7}