ortoni-report 3.0.2 → 3.0.4
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 +99 -38
- 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 +1 -0
- package/dist/ortoni-report.d.ts +1 -0
- package/dist/ortoni-report.js +1373 -62
- package/dist/ortoni-report.mjs +1366 -60
- package/dist/views/analytics.hbs +93 -95
- package/dist/views/head.hbs +1 -1
- package/dist/views/main.hbs +36 -5
- package/package.json +5 -4
- package/readme.md +13 -7
package/dist/ortoni-report.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ declare class OrtoniReport implements Reporter {
|
|
|
105
105
|
private dbManager;
|
|
106
106
|
private shouldGenerateReport;
|
|
107
107
|
private showConsoleLogs;
|
|
108
|
+
private skipTraceViewer;
|
|
108
109
|
constructor(ortoniConfig?: OrtoniReportConfig);
|
|
109
110
|
private reportsCount;
|
|
110
111
|
onBegin(config: FullConfig, _suite: Suite): Promise<void>;
|