Initial commit

This commit is contained in:
2024-02-23 09:56:02 +00:00
commit d37de6d304
73 changed files with 10954 additions and 0 deletions

3
e2e/README.md Normal file
View File

@ -0,0 +1,3 @@
# e2e
Hold End 2 End tests

8
e2e/example.spec.ts Normal file
View File

@ -0,0 +1,8 @@
import { expect, test } from '@playwright/test'
test('has title', async ({ page }) => {
await page.goto('/');
// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/Dzeio/);
})