UNPKG

@allurereport/plugin-dashboard

Version:

Allure Dashboard Plugin – plugin for generating dashboard with a mix of charts

14 lines (13 loc) 479 B
import type { ChartOptions } from "@allurereport/charts-api"; import type { TestResult } from "@allurereport/core-api"; export type DashboardOptions = { reportName?: string; singleFile?: boolean; logo?: string; theme?: "light" | "dark"; reportLanguage?: "en" | "ru"; layout?: ChartOptions[]; filter?: (testResult: TestResult) => boolean; }; export type DashboardPluginOptions = DashboardOptions; export type TemplateManifest = Record<string, string>;