mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* feat(api): refresh token logic * feat(client): refresh token logic * feat(data-provider): refresh token logic * fix: SSE uses esm * chore: add default refresh token expiry to AuthService, add message about env var not set when generating a token * chore: update scripts to more compatible bun methods, ran bun install again * chore: update env.example and playwright workflow with JWT_REFRESH_SECRET * chore: update breaking changes docs * chore: add timeout to url visit * chore: add default SESSION_EXPIRY in generateToken logic, add act script for testing github actions * fix(e2e): refresh automatically in development environment to pass e2e tests
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
test.describe('Landing suite', () => {
|
|
test('Landing title', async ({ page }) => {
|
|
await page.goto('http://localhost:3080/', { timeout: 5000 });
|
|
const pageTitle = await page.textContent('#landing-title');
|
|
expect(pageTitle?.length).toBeGreaterThan(0);
|
|
});
|
|
|
|
test('Create Conversation', async ({ page }) => {
|
|
await page.goto('http://localhost:3080/', { timeout: 5000 });
|
|
|
|
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' });
|
|
|
|
const 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);
|
|
const afterAdding = (await getItems()).length;
|
|
|
|
expect(afterAdding).toBeGreaterThanOrEqual(beforeAdding);
|
|
});
|
|
});
|