Make the Playwright e2e + kicad suites deterministic so screenshot flake stops tracing to timing races. - Blind page.waitForTimeout -> condition waits (expect.poll, web-first assertions, waitUntil) + readiness helpers (waitForWxApp, waitForCanvasApp). Remaining sleeps are documented interaction dwells (annotated). - Defensive "if element exists" branches -> loud asserts; label-fallback chains -> normalized clickMenuItemByText. First-run wizard for/if loops removed by seeding calculator/gerbview/pcbnew HTMLs. - Screenshots: new stableShot(page, name) settles the render in-page (canvas hash over rAF) then writes a raw PNG to test-results/ for the existing offline gate (tools/screenshots vs baseline-screenshots). Replaces toHaveScreenshot, which did inline compare + its own baselines and had decoupled the specs from the real gate. scale:'css' pinned. - retries: 0 in both configs. - Guard: tests/tools/lint-determinism.ts (npm run lint:determinism) bans blind sleeps / toHaveScreenshot / inline retries / swallowed catches in specs; documented exceptions carry a marker. Rules in tests/TESTING.md. Assertions, coverage, and renders unchanged (semantic-equivalence reviewed; captures pixel-identical modulo inherent timer/timestamp/3d-raytrace variance). Both suites green at retries:0 (e2e 340, kicad 92); ~35-61% faster. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BVX1pHMvRPYHdp6ZfEawrk
63 lines
2.5 KiB
TypeScript
63 lines
2.5 KiB
TypeScript
// wxCalendarCtrl Tests - Date selection
|
|
import { test, expect, waitForWxApp } from './utils/fixtures';
|
|
import { clickByLabel, clickCalendarDate, stableShot } from './utils/element-tracker';
|
|
|
|
test.describe('wxCalendarCtrl Tests', () => {
|
|
|
|
test('Calendar test app loads successfully', async ({ page, testLogger }) => {
|
|
await page.goto('/standalone/calendar/calendar_test.html');
|
|
await waitForWxApp(page);
|
|
|
|
await stableShot(page, 'calendar-01-loaded.png', { fullPage: true });
|
|
|
|
expect(testLogger.errors.filter(e => !e.includes('favicon'))).toHaveLength(0);
|
|
});
|
|
|
|
test('Calendar dates can be selected', async ({ page, testLogger }) => {
|
|
await page.goto('/standalone/calendar/calendar_test.html');
|
|
await waitForWxApp(page);
|
|
|
|
// Click on day 15 in the calendar using element registry
|
|
const clicked = await clickCalendarDate(page, 15);
|
|
expect(clicked, 'Calendar date 15 should be found and clicked').toBe(true);
|
|
|
|
await stableShot(page, 'calendar-02-select-date.png', { fullPage: true });
|
|
});
|
|
|
|
test('Calendar can navigate to next month', async ({ page, testLogger }) => {
|
|
await page.goto('/standalone/calendar/calendar_test.html');
|
|
await waitForWxApp(page);
|
|
|
|
// Click Next Month button using element registry
|
|
const clicked = await clickByLabel(page, 'Next Month');
|
|
expect(clicked, 'Next Month button should be found').toBe(true);
|
|
|
|
await stableShot(page, 'calendar-03-next-month.png', { fullPage: true });
|
|
});
|
|
|
|
test('Calendar can navigate to previous month', async ({ page, testLogger }) => {
|
|
await page.goto('/standalone/calendar/calendar_test.html');
|
|
await waitForWxApp(page);
|
|
|
|
// Click Previous Month button using element registry
|
|
const clicked = await clickByLabel(page, 'Previous Month');
|
|
expect(clicked, 'Previous Month button should be found').toBe(true);
|
|
|
|
await stableShot(page, 'calendar-04-prev-month.png', { fullPage: true });
|
|
});
|
|
|
|
test('Calendar can navigate to today', async ({ page, testLogger }) => {
|
|
await page.goto('/standalone/calendar/calendar_test.html');
|
|
await waitForWxApp(page);
|
|
|
|
// First go to next month
|
|
const nextClicked = await clickByLabel(page, 'Next Month');
|
|
expect(nextClicked, 'Next Month button should be found').toBe(true);
|
|
|
|
// Click Today button using element registry
|
|
const todayClicked = await clickByLabel(page, 'Today');
|
|
expect(todayClicked, 'Today button should be found').toBe(true);
|
|
|
|
await stableShot(page, 'calendar-05-today.png', { fullPage: true });
|
|
});
|
|
});
|