24 lines
704 B
TypeScript
24 lines
704 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
|
|
test.describe("BYOC Hashbrown", () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto("/demos/byoc-hashbrown");
|
|
});
|
|
|
|
test("page loads with chat input", async ({ page }) => {
|
|
await expect(page.getByPlaceholder("Type a message")).toBeVisible();
|
|
});
|
|
|
|
test("asking for a Q4 summary renders a hashbrown dashboard", async ({
|
|
page,
|
|
}) => {
|
|
const input = page.getByPlaceholder("Type a message");
|
|
await input.fill("Give me a Q4 sales summary with metrics and charts.");
|
|
await input.press("Enter");
|
|
|
|
await expect(page.locator('[data-role="assistant"]').first()).toBeVisible({
|
|
timeout: 60000,
|
|
});
|
|
});
|
|
});
|