mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-05 10:08:52 +01:00
Fix landing spec
This commit is contained in:
parent
6f250e0d6b
commit
55ce33aa6a
1 changed files with 2 additions and 2 deletions
|
|
@ -3,8 +3,8 @@ 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);
|
||||
const pageTitle = page.getByText('How can I help you today?');
|
||||
expect(pageTitle).toBeTruthy();
|
||||
});
|
||||
|
||||
test('Create Conversation', async ({ page }) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue