feat(e2e-helpers): republier les types Playwright que notre surface mentionne

This commit is contained in:
Sylvain Duchesne
2026-08-17 11:10:30 +02:00
parent 72bb72c0b7
commit 6dfdf2f036
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "ng-e2e-helpers", "name": "ng-e2e-helpers",
"version": "1.0.0-dev.1", "version": "1.0.0-dev.2",
"type": "module", "type": "module",
"description": "End-to-end testing machinery for a NextGraph application: mint and carry a wallet, cross the broker, per-run browser profiles, bounded waits that name what they were waiting for, and a run report whose size does not depend on what failed.", "description": "End-to-end testing machinery for a NextGraph application: mint and carry a wallet, cross the broker, per-run browser profiles, bounded waits that name what they were waiting for, and a run report whose size does not depend on what failed.",
"main": "./src/index.ts", "main": "./src/index.ts",
+5
View File
@@ -94,3 +94,8 @@ export {
type ScreenSignature, type ScreenSignature,
type TextPattern, type TextPattern,
} from "./nextgraph-ui"; } from "./nextgraph-ui";
// Re-exported so a consumer can type its own helpers against our signatures without a second,
// independently-versioned import of `playwright` — exactly the set our own exported functions
// mention (`launchWatchedContext`, `setupBrokerPage`, `frameTrouble`, and their neighbors).
export type { BrowserContext, Frame, Page } from "playwright";