diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index 4d75ca08c0..90f61adef4 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -143,29 +143,6 @@ - -
diff --git a/src/views/HelpNotificationsView.vue b/src/views/HelpNotificationsView.vue index 35b70b8331..35e6c4a42c 100644 --- a/src/views/HelpNotificationsView.vue +++ b/src/views/HelpNotificationsView.vue @@ -1,34 +1,3 @@ - diff --git a/test-playwright/60-new-activity.spec.ts b/test-playwright/55-new-activity.spec.ts similarity index 100% rename from test-playwright/60-new-activity.spec.ts rename to test-playwright/55-new-activity.spec.ts diff --git a/test-playwright/README.md b/test-playwright/README.md index 4aea68e354..5b813cb781 100644 --- a/test-playwright/README.md +++ b/test-playwright/README.md @@ -4,20 +4,7 @@ This directory contains the automated end-to-end test suite for Time Safari usin ## Test Structure -Tests are organized by feature area and numbered for execution order: - -- `00-noid-tests.spec.ts` - Tests for unregistered users -- `05-invite.spec.ts` - Contact invitation functionality -- `10-check-usage-limits.spec.ts` - Usage limit verification -- `20-create-project.spec.ts` - Project creation -- `25-create-project-x10.spec.ts` - Bulk project creation -- `30-record-gift.spec.ts` - Gift recording -- `33-record-gift-x10.spec.ts` - Bulk gift recording -- `35-record-gift-from-image-share.spec.ts` - Gift recording from shared images -- `37-record-gift-on-project.spec.ts` - Project-specific gift recording -- `40-add-contact.spec.ts` - Contact management -- `50-record-offer.spec.ts` - Offer recording -- `60-new-activity.spec.ts` - Activity feed updates +Tests are organized by feature area and numbered for execution order. ## Key Files diff --git a/test-playwright/TESTING.md b/test-playwright/TESTING.md index 1efbd7ff01..6e7e2fbc63 100644 --- a/test-playwright/TESTING.md +++ b/test-playwright/TESTING.md @@ -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