refactor(e2e): prendre les types navigateur chez les helpers plutôt que chez playwright

This commit is contained in:
Sylvain Duchesne
2026-08-17 11:12:26 +02:00
parent 935cce4d7b
commit 520c8c59a8
5 changed files with 10 additions and 8 deletions
@@ -29,8 +29,7 @@
* shared wallet (as faithfulReconnect does) — and writes from it.
*/
import type { Frame, Page, BrowserContext } from "playwright";
import { launchWatchedContext, setupBrokerPage, type RunProfile } from "ng-e2e-helpers";
import { launchWatchedContext, setupBrokerPage, type RunProfile, type Frame, type Page, type BrowserContext } from "ng-e2e-helpers";
import { WALLET, buildBundle, mintBatchWallet, serveHarness } from "./harness-page";
type Check = { name: string; ok: boolean; detail?: string };