mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-06-01 18:49:27 +02:00
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import { test, expect } from "@chromatic-com/playwright";
|
|
|
|
test(
|
|
"Admin - User Management - Groups",
|
|
{
|
|
tag: "@admin",
|
|
},
|
|
async ({ page }, testInfo) => {
|
|
// Test simple loading
|
|
await page.goto("http://localhost:3000/admin/users");
|
|
await expect(page.locator("h1.text-3xl")).toHaveText("Manage Users");
|
|
}
|
|
);
|