test: playwright e2e setup with onboarding, navigation and receive specs

This commit is contained in:
2026-08-19 21:36:48 +02:00
parent 1839700215
commit 05fc40263b
12 changed files with 342 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import { test as base, expect } from '@playwright/test';
import { MintMocker } from './helpers/MintMocker';
export const test = base.extend<{ mint: MintMocker }>({
mint: async ({ page }, use) => {
const mint = new MintMocker(page);
await use(mint);
await page.unrouteAll({ behavior: 'wait' });
},
});
export { expect };