ortoni-report 3.0.1 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,6 +84,10 @@ interface OrtoniReportConfig {
84
84
  * @example { "key": "value" } as string
85
85
  */
86
86
  meta?: Record<string, string>;
87
+ /**
88
+ * Chart type on the dashboard.
89
+ * @example "doughnut" | "pie" */
90
+ chartType?: "doughnut" | "pie";
87
91
  }
88
92
 
89
93
  declare class OrtoniReport implements Reporter {
@@ -101,6 +105,7 @@ declare class OrtoniReport implements Reporter {
101
105
  private dbManager;
102
106
  private shouldGenerateReport;
103
107
  private showConsoleLogs;
108
+ private skipTraceViewer;
104
109
  constructor(ortoniConfig?: OrtoniReportConfig);
105
110
  private reportsCount;
106
111
  onBegin(config: FullConfig, _suite: Suite): Promise<void>;