Files
blackroad-os-demo/tests/tour.spec.ts
2025-11-24 02:06:39 -06:00

8 lines
293 B
TypeScript

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();
});