LibreChat/e2e/specs/landing.spec.js

7 lines
239 B
JavaScript
Raw Normal View History

2023-03-27 17:00:59 -07:00
import {expect, test} from '@playwright/test';
test('landing page', async ({page}) => {
await page.goto('/');
expect (await page.title()).toBe('New Chat');
expect (await page.textContent('#landing-title')).toBe('ChatGPT Clone');
2023-03-27 17:00:59 -07:00
});