- Raise use-swipe-gesture mutation score to 66.13% (target 65%+) - Maintain use-reduced-motion mutation score at 76.32% (target 50%+) - Fix use-reduced-motion.ts ESLint set-state-in-effect warning - Add UJ-10 deep searcher journey (category browse → article read → content discovery) - Add 40 new test files (analytics, detail, sections, ui, lib components) - Update test-strategy-plan.md to v2.0 (sync test count to 1591) - Sync README.md with final release metrics Quality gates: TS 0 errors, ESLint 0 errors, 121 suites / 1591 tests passed
31 lines
882 B
TypeScript
31 lines
882 B
TypeScript
// @ts-nocheck
|
|
import { test as base } from '@playwright/test';
|
|
import { PerformanceMonitor } from '../utils/performance/PerformanceMonitor';
|
|
import { LighthouseRunner } from '../utils/performance/LighthouseRunner';
|
|
import { CoreWebVitals } from '../utils/performance/CoreWebVitals';
|
|
|
|
type MyFixtures = {
|
|
performanceMonitor: PerformanceMonitor;
|
|
lighthouseRunner: LighthouseRunner;
|
|
coreWebVitals: CoreWebVitals;
|
|
};
|
|
|
|
export const test = base.extend<MyFixtures>({
|
|
performanceMonitor: async ({ page }, use) => {
|
|
const monitor = new PerformanceMonitor(page);
|
|
await use(monitor);
|
|
},
|
|
|
|
lighthouseRunner: async ({ page }, use) => {
|
|
const runner = new LighthouseRunner(page);
|
|
await use(runner);
|
|
},
|
|
|
|
coreWebVitals: async ({ page }, use) => {
|
|
const vitals = new CoreWebVitals(page);
|
|
await use(vitals);
|
|
}
|
|
});
|
|
|
|
export { expect } from '@playwright/test';
|