ortoni-report 3.0.5 → 4.0.0
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 +30 -0
- package/dist/index.html +21 -0
- package/dist/ortoni-report.d.mts +2 -12
- package/dist/ortoni-report.d.ts +2 -12
- package/dist/ortoni-report.js +162 -314
- package/dist/ortoni-report.mjs +160 -312
- package/package.json +4 -5
- package/readme.md +26 -33
- package/dist/chunk-AY2PKDHU.mjs +0 -69
- package/dist/chunk-OOALU4XG.mjs +0 -72
- package/dist/chunk-ZSIRUQUA.mjs +0 -68
- package/dist/style/main.css +0 -80
- package/dist/views/analytics.hbs +0 -103
- package/dist/views/head.hbs +0 -11
- package/dist/views/main.hbs +0 -1295
- package/dist/views/project.hbs +0 -238
- package/dist/views/sidebar.hbs +0 -244
- package/dist/views/summaryCard.hbs +0 -15
- package/dist/views/testIcons.hbs +0 -13
- package/dist/views/testPanel.hbs +0 -45
- package/dist/views/testStatus.hbs +0 -9
- package/dist/views/userInfo.hbs +0 -260
package/dist/ortoni-report.d.mts
CHANGED
|
@@ -36,15 +36,9 @@ interface OrtoniReportConfig {
|
|
|
36
36
|
* @example "Regression"
|
|
37
37
|
*/
|
|
38
38
|
testType?: string;
|
|
39
|
-
/**
|
|
40
|
-
* The preferred theme for the report.
|
|
41
|
-
* Can be either "light" or "dark".
|
|
42
|
-
* @default "System theme"
|
|
43
|
-
* @example "dark"
|
|
44
|
-
*/
|
|
45
|
-
preferredTheme?: "light" | "dark";
|
|
46
39
|
/**
|
|
47
40
|
* If true, images will be encoded in base64.
|
|
41
|
+
* Not recommended to use if many screenshots are present.
|
|
48
42
|
* @default false
|
|
49
43
|
* @example true
|
|
50
44
|
*/
|
|
@@ -80,14 +74,10 @@ interface OrtoniReportConfig {
|
|
|
80
74
|
*/
|
|
81
75
|
stdIO?: boolean;
|
|
82
76
|
/**
|
|
83
|
-
* Metadata for the report. ['
|
|
77
|
+
* Metadata for the report. ['Test Cycle': 'Cycle 1', 'Test Environment':'QA', etc]
|
|
84
78
|
* @example { "key": "value" } as string
|
|
85
79
|
*/
|
|
86
80
|
meta?: Record<string, string>;
|
|
87
|
-
/**
|
|
88
|
-
* Chart type on the dashboard.
|
|
89
|
-
* @example "doughnut" | "pie" */
|
|
90
|
-
chartType?: "doughnut" | "pie";
|
|
91
81
|
}
|
|
92
82
|
|
|
93
83
|
declare class OrtoniReport implements Reporter {
|
package/dist/ortoni-report.d.ts
CHANGED
|
@@ -36,15 +36,9 @@ interface OrtoniReportConfig {
|
|
|
36
36
|
* @example "Regression"
|
|
37
37
|
*/
|
|
38
38
|
testType?: string;
|
|
39
|
-
/**
|
|
40
|
-
* The preferred theme for the report.
|
|
41
|
-
* Can be either "light" or "dark".
|
|
42
|
-
* @default "System theme"
|
|
43
|
-
* @example "dark"
|
|
44
|
-
*/
|
|
45
|
-
preferredTheme?: "light" | "dark";
|
|
46
39
|
/**
|
|
47
40
|
* If true, images will be encoded in base64.
|
|
41
|
+
* Not recommended to use if many screenshots are present.
|
|
48
42
|
* @default false
|
|
49
43
|
* @example true
|
|
50
44
|
*/
|
|
@@ -80,14 +74,10 @@ interface OrtoniReportConfig {
|
|
|
80
74
|
*/
|
|
81
75
|
stdIO?: boolean;
|
|
82
76
|
/**
|
|
83
|
-
* Metadata for the report. ['
|
|
77
|
+
* Metadata for the report. ['Test Cycle': 'Cycle 1', 'Test Environment':'QA', etc]
|
|
84
78
|
* @example { "key": "value" } as string
|
|
85
79
|
*/
|
|
86
80
|
meta?: Record<string, string>;
|
|
87
|
-
/**
|
|
88
|
-
* Chart type on the dashboard.
|
|
89
|
-
* @example "doughnut" | "pie" */
|
|
90
|
-
chartType?: "doughnut" | "pie";
|
|
91
81
|
}
|
|
92
82
|
|
|
93
83
|
declare class OrtoniReport implements Reporter {
|