mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09: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
16 lines
582 B
TypeScript
16 lines
582 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
|
|
test.describe("Revenue discovery — public marketing alignment", () => {
|
|
test("landing shows enterprise CTA (no public pricing section id)", async ({ page }) => {
|
|
const res = await page.goto("/landing");
|
|
expect(res?.ok()).toBeTruthy();
|
|
await expect(page.locator("#enterprise")).toBeVisible();
|
|
await expect(
|
|
page
|
|
.locator("#enterprise")
|
|
.getByRole("link", { name: /عرض مؤسسي|تحدث مع المبيعات|طلب عرض مؤسسي/ })
|
|
.first(),
|
|
).toBeVisible();
|
|
});
|
|
});
|