Phase-1 fallout: delete tests for deleted pages, re-point moved-behavior tests to the trip/home page where the content now lives. - maps.spec: keep M4/M7/M8 (home+trip maps); drop M1-3,5,6,9-11 (/map, /dailies & /stories mini-maps) - map-ux: re-point MUX4/5 sort toggle to #trip-sort-toggle on trip page - nav: N1->trip page, N2->home, drop N3 (/stats) + N5 (obsolete skip) - dailies: T1->trip page; T2->trip page with oldest-first assertion; fix T3-T6 stale entry-detail selectors (.entry-* -> .journal-post-*, pre-existing failures from an earlier entry redesign) - stories: S1/S5 -> trip feed story cards ([data-type=story]) - gpx-journey: load MapUtils from the trip page instead of /map - a11y: A4 photo strips -> trip page; drop AX3 (covered by AX2) - post/helpers: verify posted entry on the trip page (ACTIVE_TRIP_URL) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
// @ts-check
|
||
// Tests: N1–N4 — page loads and navigation links.
|
||
// The standalone /map, /stats and /dailies views were retired; their content now
|
||
// lives on the trip page. N1/N2 are smoke tests for the two live landing surfaces.
|
||
const { test, expect } = require('@playwright/test');
|
||
|
||
// ── N1: Trip page renders with site header ───────────────────────────────────
|
||
test('N1: trip page loads with site header and title', async ({ page }) => {
|
||
const errors = [];
|
||
page.on('pageerror', e => errors.push(e.message));
|
||
|
||
await page.goto('/trips/italy-2026-demo');
|
||
await expect(page.locator('.site-header')).toBeVisible();
|
||
await expect(page).toHaveTitle(/Into the East/i);
|
||
expect(errors).toHaveLength(0);
|
||
});
|
||
|
||
// ── N2: Home page renders without JS errors ──────────────────────────────────
|
||
test('N2: home page loads with site header and no JS errors', async ({ page }) => {
|
||
const errors = [];
|
||
page.on('pageerror', e => errors.push(e.message));
|
||
|
||
await page.goto('/');
|
||
await expect(page.locator('.site-header')).toBeVisible();
|
||
expect(errors).toHaveLength(0);
|
||
});
|
||
|
||
// ── N4: trip page has Journal filter button (replaced the old sub-page nav link) ─
|
||
test('N4: trip page filter bar has Journal button', async ({ page }) => {
|
||
await page.goto('/trips/italy-2026-demo');
|
||
await expect(page.locator('.trip-filter-btn[data-filter="journal"]')).toBeVisible();
|
||
});
|