Skip to content

Commit 6f7964f

Browse files
committed
apply fixes
1 parent d0e8b23 commit 6f7964f

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

apps/web/e2e/E2Ereadme.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,25 @@ The GitHub Actions workflow (`.github/workflows/e2e.yml`) follows exactly the sa
6969

7070
---
7171

72+
## Running tests in headed mode (see the browser)
73+
74+
By default, Playwright runs tests in headless mode. To watch the tests execute:
75+
76+
```bash
77+
# Run all tests with visible browser
78+
yarn test:e2e --headed
79+
80+
# Run a specific test file
81+
yarn test:e2e registration-success.spec.ts --headed
82+
83+
# Debug mode: opens Playwright Inspector, lets you step through each action
84+
PWDEBUG=1 yarn test:e2e registration-success.spec.ts
85+
```
86+
87+
**Note:** In headed mode, you'll see the MetaMask extension window pop up alongside your app. The test automation will click through it automatically—don't interfere or it may fail!
88+
89+
---
90+
7291
Feel free to extend this README if you run into anything else that others might find useful. Happy testing! 🎉
7392

7493
### NOTE:
@@ -77,8 +96,6 @@ If you see this error:
7796

7897
```bash
7998

80-
Aushveen Vimalathas
81-
:no_bell: Today at 10:51 AM
8299
Run xvfb-run --auto-servernum --server-args="-screen 0 1920x1080x24" yarn test:e2e
83100
[WebServer] ⚠ i18n configuration in next.config.js is unsupported in App Router.
84101
[WebServer] Learn more about internationalization in App Router: https://nextjs.org/docs/app/building-your-application/routing/internationalization

0 commit comments

Comments
 (0)