submit username and password

This commit is contained in:
Elio Bischof
2024-10-16 16:50:48 +02:00
parent 653b499668
commit f1b756b721
3 changed files with 13 additions and 9 deletions

View File

@@ -1,7 +1,6 @@
import { test, expect } from '@playwright/test';
test('get started link', async ({ page }) => {
await page.goto('http://localhost:8080/');
import { test } from '@playwright/test';
test('login is accessible', async ({ page }) => {
await page.goto('http://localhost:3000/');
await page.getByRole('heading', { name: 'Welcome back!' }).isVisible();
});