mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 04:10:15 +01:00
* fix(Chat.jsx): conversation no longer navigates upon message creation, which would cause re-render/flicker * chore(.gitignore): ignore storageState.json in all directories chore(storageState.json): delete e2e/storageState.json file * test(e2e): fix old tests with new playwright setup & add helper script for codegen * fix(Conversation.jsx): add data-testid attribute to <a> element test(messages.spec.js): add test for expected navigation after receiving message test(messages.spec.js): add test for page navigations * chore(Plugin.jsx): import Spinner from '~/components' instead of '../svg/Spinner' chore(index.jsx): import Spinner from '~/components' instead of '../svg/Spinner' chore(Spinner.jsx): change classProp prop to className prop in Spinner component feat(index.ts): export Spinner component from './Spinner'
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
/* eslint-disable no-undef */
|
|
import { expect, test } from '@playwright/test';
|
|
|
|
test.describe('Landing suite', () => {
|
|
|
|
test('Landing title', async ({page}) => {
|
|
await page.goto('http://localhost:3080/');
|
|
const pageTitle = await page.textContent('#landing-title');
|
|
expect(pageTitle.length).toBeGreaterThan(0);
|
|
});
|
|
|
|
test('Create Conversation', async ({ page }) => {
|
|
await page.goto('http://localhost:3080/');
|
|
|
|
async function getItems() {
|
|
const navDiv = await page.waitForSelector('nav > div');
|
|
if (!navDiv) {
|
|
return [];
|
|
}
|
|
|
|
const items = await navDiv.$$('a.group');
|
|
return items || [];
|
|
}
|
|
|
|
// Wait for the page to load and the SVG loader to disappear
|
|
await page.waitForSelector('nav > div');
|
|
await page.waitForSelector('nav > div > div > svg', { state: 'detached' });
|
|
|
|
let beforeAdding = (await getItems()).length;
|
|
|
|
const input = await page.locator('form').getByRole('textbox');
|
|
await input.click();
|
|
await input.fill('Hi!');
|
|
|
|
// Send the message
|
|
await page.locator('form').getByRole('button').nth(1).click();
|
|
|
|
// Wait for the message to be sent
|
|
await page.waitForTimeout(3500);
|
|
let afterAdding = (await getItems()).length;
|
|
|
|
expect(afterAdding).toBeGreaterThanOrEqual(beforeAdding);
|
|
});
|
|
});
|