This commit is contained in:
2026-06-23 22:03:26 -07:00
parent 2e3c1e3646
commit e8cbd2760c
7 changed files with 110 additions and 45 deletions

View File

@@ -1,5 +1,11 @@
import { test, expect } from '@playwright/test';
// Reset the shared test-server dataset before each test so tests are isolated
// from one another (and from other spec files) regardless of run order.
test.beforeEach(async ({ request }) => {
await request.post('/test-reset');
});
let testInfoCache: any = null;
async function getTestInfo(page: any) {