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.
- package/changelog.md +101 -33
- package/dist/chunk-A6HCKATU.mjs +76 -0
- package/dist/chunk-AY2PKDHU.mjs +69 -0
- package/dist/chunk-OOALU4XG.mjs +72 -0
- package/dist/cli/cli.js +7 -3
- package/dist/cli/cli.mjs +1 -1
- package/dist/ortoni-report.d.mts +5 -0
- package/dist/ortoni-report.d.ts +5 -0
- package/dist/ortoni-report.js +1503 -49
- package/dist/ortoni-report.mjs +1496 -47
- package/dist/views/analytics.hbs +103 -0
- package/dist/views/head.hbs +1 -1
- package/dist/views/main.hbs +41 -5
- package/dist/views/sidebar.hbs +8 -0
- package/dist/views/userInfo.hbs +22 -33
- package/package.json +5 -4
- package/readme.md +48 -30
package/dist/ortoni-report.d.ts
CHANGED
|
@@ -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>;
|