Scaffold demo-gen-0 Next.js showcase

This commit is contained in:
Alexa Amundson
2025-11-24 02:06:39 -06:00
parent d62a139950
commit c2ce01906a
61 changed files with 774 additions and 6053 deletions

7
tests/tour.spec.ts Normal file
View File

@@ -0,0 +1,7 @@
import { test, expect } from '@playwright/test';
test('landing renders tour CTA', async ({ page }) => {
await page.goto('http://localhost:3000');
await expect(page.getByText('Demo Showcase')).toBeVisible();
await expect(page.getByText('Tour the Core UI + Operator')).toBeVisible();
});