test: Authenticated tests setup

This commit is contained in:
Tibo De Peuter 2025-04-13 16:43:23 +02:00
parent d53d1a018c
commit d7627be056
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 115 additions and 0 deletions

View file

@ -0,0 +1,5 @@
import { test, expect } from './fixtures.js';
test('myTest', async ({ page }) => {
await expect(page).toHaveURL('/');
});