super-pancake-automation
Version:
A lightweight DOM-based UI automation framework using Chrome DevTools Protocol
12 lines (10 loc) • 362 B
JavaScript
import { writeReport } from '../reporter/htmlReporter.js';
try {
// Generate the HTML report with external JSON data
const reportPath = await writeReport();
console.log('📊 Enhanced test report generated successfully!');
} catch (error) {
console.error('❌ Failed to generate test report:', error);
process.exit(1);
}