Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-02-07 12:25:59 +01:00
parent 1db0e94b20
commit 862a361a3d
16 changed files with 14625 additions and 3 deletions

6
tests/example.spec.ts Normal file
View File

@@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('homepage has expected title', async ({ page }) => {
await page.goto('https://example.com');
await expect(page).toHaveTitle(/Example Domain/);
});