feat: Frontend CSS refactoring and test improvements
Frontend: - Refactored CSS architecture with new utility classes - Updated dashboard components styling - Improved responsive grid system - Enhanced typography and variables - Updated E2E and integration tests Added: - Claude Code slash commands for validation - SSH tunnel and start test scripts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -4,11 +4,9 @@
|
||||
|
||||
import { test, expect } from '@playwright/test';
|
||||
import { LoginPage } from '../page-objects/LoginPage.js';
|
||||
import { DashboardPage } from '../page-objects/DashboardPage.js';
|
||||
|
||||
test.describe('🌍 ROA2WEB Real-World Comprehensive Testing', () => {
|
||||
let loginPage;
|
||||
let dashboardPage;
|
||||
let performanceMetrics = [];
|
||||
let networkErrors = [];
|
||||
let consoleErrors = [];
|
||||
@@ -50,7 +48,6 @@ test.describe('🌍 ROA2WEB Real-World Comprehensive Testing', () => {
|
||||
});
|
||||
|
||||
loginPage = new LoginPage(page);
|
||||
dashboardPage = new DashboardPage(page);
|
||||
});
|
||||
|
||||
test('🎯 COMPLETE USER JOURNEY - Login to Dashboard to Reports', async ({ page }) => {
|
||||
@@ -327,7 +324,7 @@ test.describe('🌍 ROA2WEB Real-World Comprehensive Testing', () => {
|
||||
}
|
||||
});
|
||||
|
||||
test.afterEach(async ({ page }) => {
|
||||
test.afterEach(async () => {
|
||||
// Generate comprehensive test report
|
||||
console.log('\n📋 === COMPREHENSIVE TEST REPORT ===');
|
||||
console.log(`🌐 Total Network Requests: ${performanceMetrics.length}`);
|
||||
|
||||
Reference in New Issue
Block a user