update the notification-help to remove push-notification info, and other minor fixes

This commit is contained in:
2026-03-05 20:58:49 -07:00
parent 6825bd5214
commit 94f31faacc
5 changed files with 92 additions and 595 deletions

View File

@@ -138,12 +138,12 @@ await page.waitForFunction(() => {
3. If you find yourself wanting to see the testing process try something like this:
```
npx playwright test -c playwright.config-local.ts test-playwright/60-new-activity.spec.ts --grep "New offers for another user" --headed
npx playwright test -c playwright.config-local.ts test-playwright/40-add-contact.spec.ts --grep "New offers for another user" --headed
```
This command allows you to:
- **Run a specific test file**: `test-playwright/60-new-activity.spec.ts`
- **Run a specific test file**: `test-playwright/40-add-contact.spec.ts`
- **Filter to a specific test**: `--grep "New offers for another user"` runs only tests with that name
- **See the browser**: `--headed` opens the browser window so you can watch the test execute
- **Use local config**: `-c playwright.config-local.ts` uses the local configuration file