diff --git a/.github/workflow/playwright.yml b/.github/workflow/playwright.yml new file mode 100644 index 0000000000..29c87ca950 --- /dev/null +++ b/.github/workflow/playwright.yml @@ -0,0 +1,28 @@ +name: Playwright Tests +on: + push: + branches: [ main, master ] + pull_request: + branches: [ main, master ] +jobs: + tests_e2e: + name: Run end-to-end tests + timeout-minutes: 60 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Install dependencies + run: npm ci + - name: Install Playwright Browsers + run: npx playwright install --with-deps + - name: Run Playwright tests + run: npx playwright test + - uses: actions/upload-artifact@v3 + if: always() + with: + name: playwright-report + path: e2e/playwright-report/ + retention-days: 30 diff --git a/client/src/components/ui/Landing.jsx b/client/src/components/ui/Landing.jsx index 3412018382..27d4066c48 100644 --- a/client/src/components/ui/Landing.jsx +++ b/client/src/components/ui/Landing.jsx @@ -32,7 +32,7 @@ export default function Landing() { return (
-

+

ChatGPT Clone

diff --git a/e2e/specs/landing.spec.js b/e2e/specs/landing.spec.js index 9582cd0a4c..d97e8a01a3 100644 --- a/e2e/specs/landing.spec.js +++ b/e2e/specs/landing.spec.js @@ -2,6 +2,6 @@ import {expect, test} from '@playwright/test'; test('landing page', async ({page}) => { await page.goto('/'); - expect (await page.title()).toBe('ChatGPT Clone'); - expect (await page.textContent('h1')).toBe('ChatGPT Clone'); + expect (await page.title()).toBe('New Chat'); + expect (await page.textContent('#landing-title')).toBe('ChatGPT Clone'); }); \ No newline at end of file