13 lines
486 B
TypeScript
13 lines
486 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
|
|
test.skip(
|
|
"TanStack home renders site name + nav (pending TanStack Start runtime)",
|
|
async ({ page }) => {
|
|
// Pending: web-tanstack has no dev server yet. When the TanStack Start
|
|
// runtime is wired (future plan), update the playwright.config.ts
|
|
// webServer to start it on port 3002 and remove this skip.
|
|
await page.goto("http://localhost:3002");
|
|
await expect(page.locator("h1").first()).toBeVisible();
|
|
},
|
|
);
|