mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-30 11:46:32 +03:00
77e135fb5b
- Brain selection - Chat deletion - Unplug chat - Plug chat
12 lines
273 B
TypeScript
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);
|