ortoni-report 3.0.4 → 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.
@@ -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. ['TestCycle': 'Cycle 1', 'TestEnvironment':'QA', etc]
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 {
@@ -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. ['TestCycle': 'Cycle 1', 'TestEnvironment':'QA', etc]
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 {