mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
Add revenue discovery APIs/services, launch verification gates, CI quality checks, and frontend E2E/docs updates to prepare the branch for production go-live. Made-with: Cursor
19 lines
603 B
TypeScript
19 lines
603 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
|
|
/**
|
|
* Public / low-auth smoke for launch readiness (strategy docs shell, landing).
|
|
*/
|
|
test.describe("Launch smoke — public routes", () => {
|
|
test("strategy page loads without 5xx", async ({ page }) => {
|
|
const res = await page.goto("/strategy");
|
|
expect(res?.ok()).toBeTruthy();
|
|
await expect(page.locator("body")).toBeVisible();
|
|
});
|
|
|
|
test("landing or root resolves", async ({ page }) => {
|
|
const res = await page.goto("/landing");
|
|
expect(res?.ok()).toBeTruthy();
|
|
await expect(page.locator("body")).toBeVisible();
|
|
});
|
|
});
|