This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
learningpulse/web-client/tests/e2e/dashboard.spec.ts
2024-09-05 17:07:07 +02:00

14 lines
461 B
TypeScript

import {expect, test} from "@playwright/test";
test('dashboard renders', async ({page}) => {
await page.goto('http://localhost:3000/');
await page.getByRole('link', { name: 'Dashboard'}).click();
// Expect a title "to contain" a substring.
await expect(page).toHaveURL('http://localhost:3000/dashboard');
await expect(page.locator('h1')).toHaveText('Hello, Next.js!');
await expect(page.locator('div').first()).toHaveText('Dummy Component');
})