storkit: create 365_story_surface_api_rate_limit_warnings_in_chat

This commit is contained in:
dave
2026-03-22 18:19:23 +00:00
parent f346712dd1
commit e4227cf673
175 changed files with 0 additions and 83945 deletions

View File

@@ -1,16 +0,0 @@
import { expect, test } from "@playwright/test";
test.describe("App boot smoke test", () => {
test("renders the app without errors", async ({ page }) => {
await page.goto("/");
// The app should render either the project selection screen or the
// workspace chat view, depending on whether a project is already open.
// We intentionally do NOT call DELETE /api/project here because that
// would nuke the live server's project_root state and break any
// background agents that depend on it.
//
// Just verify the page loads and has a visible <main> container.
await expect(page.locator("main.container")).toBeVisible();
});
});