mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 19:32:47 +03:00
# Description - Implement Icon Component - Implement TextButton Component - Change Add Brain Button And Set it in the Search Page - Fix Errors When sending empty message - Change EsLint rules ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
19 lines
539 B
TypeScript
19 lines
539 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);
|
|
});
|
|
};
|