mirror of
https://github.com/StanGirard/quivr.git
synced 2025-01-05 10:08:28 +03:00
77e135fb5b
- Brain selection - Chat deletion - Unplug chat - Plug chat
18 lines
538 B
TypeScript
18 lines
538 B
TypeScript
import { test } from "@playwright/test";
|
|
|
|
import { testChat } from "./utils/testChat";
|
|
import { testDeleteChats } from "./utils/testDeleteChats";
|
|
import { testSelectBrain } from "./utils/testSelectBrain";
|
|
import { testUnplugChat } from "./utils/testUnplugChat";
|
|
import { login } from "../../utils/login";
|
|
|
|
export const chatTests = (): void => {
|
|
test("chat", async ({ page }) => {
|
|
await login(page);
|
|
await testChat(page);
|
|
await testUnplugChat(page);
|
|
await testSelectBrain(page);
|
|
await testDeleteChats(page);
|
|
});
|
|
};
|