From 26c91fcc38d4d683b8f22aa2e5e5361452b75476 Mon Sep 17 00:00:00 2001 From: Mischa Date: Sat, 20 Jun 2026 21:18:08 +0200 Subject: [PATCH] test(stories): update story slugs to match new demo content --- tests/ui/stories.spec.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/ui/stories.spec.js b/tests/ui/stories.spec.js index 96bff1e..84072ad 100644 --- a/tests/ui/stories.spec.js +++ b/tests/ui/stories.spec.js @@ -1,12 +1,12 @@ // @ts-check -// Tests: S1–S6 — story mode rendering and navigation +// Tests: S1–S7 — story mode rendering and navigation // Requires demo data: run `make demo-load` before this suite. const { test, expect } = require('@playwright/test'); const STORIES_URL = '/trips/italy-2026-demo/stories'; -const STORY_GALLERY = '/trips/italy-2026-demo/stories/val-dorcia-dawn'; // gallery-led: snap-gallery × 2, chapter-break, text-only pull-quote -const STORY_SCROLLY = '/trips/italy-2026-demo/stories/long-climb-montalcino'; // scrolly-led: scrolly-section × 2, chapter-break, pull-quote with image -const DEMO_STORY = '/trips/italy-2026-demo/stories/val-dorcia-dawn'; // used for cross-trip hero sanity check +const STORY_GALLERY = '/trips/italy-2026-demo/stories/val-dorcia-at-dawn'; // gallery-led: snap-gallery × 2, chapter-break, text-only pull-quote +const STORY_SCROLLY = '/trips/italy-2026-demo/stories/sorano-rock-and-time'; // scrolly-led: scrolly-section × 2, chapter-break, pull-quote with image +const DEMO_STORY = '/trips/italy-2026-demo/stories/val-dorcia-at-dawn'; // used for cross-trip hero sanity check // ── S1: Stories listing shows cards ────────────────────────────────────────── test('S1: stories listing renders at least 3 story cards', async ({ page }) => { @@ -76,7 +76,7 @@ test('S6: demo story renders hero image without placeholder', async ({ page }) = // ── S7: Story body back link is styled as a back-pill ──────────────────────── test('S7: story body back link has back-pill class', async ({ page }) => { - await page.goto('/trips/italy-2026-demo/stories/val-dorcia-dawn'); + await page.goto('/trips/italy-2026-demo/stories/val-dorcia-at-dawn'); await expect(page.locator('.story-hero__img')).toBeVisible({ timeout: 8000 }); // Scroll past the hero to reveal the story body await page.evaluate(() => window.scrollBy(0, window.innerHeight * 1.5));