quivr/frontend/e2e/index.ts
Mamadou DICKO 77e135fb5b
test: add chat e2e tests (#1344)
- Brain selection
- Chat deletion
- Unplug chat
- Plug chat
2023-10-09 15:23:24 +02:00

12 lines
273 B
TypeScript

import { test } from "@playwright/test";
import { chatTests } from "./tests/chat";
import { crawlTests } from "./tests/crawl";
import { createBrainTests } from "./tests/createBrain";
test.describe(createBrainTests);
test.describe(crawlTests);
test.describe(chatTests);