LibreChat/e2e/specs/landing.spec.js
Daniel Avila e98ce09d6b ci(playwright.yml): add Playwright tests workflow
fix(Landing.jsx): add id attribute to landing page title
test(landing.spec.js): update landing page title and h1 text content assertions
2023-04-06 17:33:02 -04:00

7 lines
No EOL
239 B
JavaScript

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');
});