mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-06 00:47:09 +00:00
test(frontend): basic e2e testing framework
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import { expect, test } from '@playwright/test';
|
||||
|
||||
test('page loads', async ({ page }) => {
|
||||
await page.goto('/');
|
||||
await expect(page.locator('main')).toBeVisible();
|
||||
});
|
||||
Reference in New Issue
Block a user