playwright-fire-reports 1.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/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Playwright Fire Reports
2
+
3
+ The most beautiful, stunning, and visually advanced HTML report generator for Playwright test results.
4
+
5
+ Quick start: `fire-report --input test-results.json --output report.html --theme light`
6
+
@@ -0,0 +1,21 @@
1
+ import { ReportData } from './parser.js';
2
+ import { Statistics } from './statistics.js';
3
+ export interface AdvancedReportOptions {
4
+ title?: string;
5
+ theme?: 'dark' | 'light' | 'neon' | 'professional';
6
+ outputPath: string;
7
+ slackWebhook?: string;
8
+ teamsWebhook?: string;
9
+ emailTo?: string[];
10
+ }
11
+ export interface EnhancedMetrics extends Statistics {
12
+ executionStartTime?: string;
13
+ executionEndTime?: string;
14
+ successTrendPercent?: number;
15
+ performanceScore?: number;
16
+ reliabilityScore?: number;
17
+ efficiency?: number;
18
+ testTimelineData?: any[];
19
+ performanceTiers?: any;
20
+ }
21
+ export declare function generateAdvancedReport(data: ReportData, options: AdvancedReportOptions): Promise<string>;