Skip to content

Commit 22f3525

Browse files
committed
Remove phase numbering from e2e test file headers
1 parent c551a1c commit 22f3525

7 files changed

Lines changed: 8 additions & 8 deletions

packages/join-e2e/tests/01-render.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22

33
/**
4-
* Phase 1 — Rendering
4+
* Rendering
55
*
66
* Verifies that the join form block renders correctly: the React mount point
77
* is present, the environment JSON is injected and parseable, the first step's

packages/join-e2e/tests/02-form-progression.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22

33
/**
4-
* Phase 2 — Form progression
4+
* Form progression
55
*
66
* All tests start on the standard test page. Because the bundle is built with
77
* REACT_APP_USE_TEST_DATA=true, getTestDataIfEnabled() pre-fills every field

packages/join-e2e/tests/03-free-membership.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from '@playwright/test';
22

33
/**
4-
* Phase 3 — Free membership happy path
4+
* Free membership happy path
55
*
66
* Uses the free-membership test page (amount="0"). Because the plan amount is
77
* zero and no additional donation is requested, shouldSkipPayment fires in

packages/join-e2e/tests/04-donation-upsell.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test';
22
import { mockRestEndpoints, CONTINUE } from './helpers';
33

44
/**
5-
* Phase 4 — Donation upsell
5+
* Donation upsell
66
*
77
* Tests the standard join flow when ASK_FOR_ADDITIONAL_DONATION is enabled.
88
* After the member selects a plan, an optional donation upsell page is shown

packages/join-e2e/tests/05-supporter-mode-monthly.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test';
22
import { mockRestEndpoints, captureJoinBodyViaStripeRedirect, injectEnvOverrides, CONTINUE } from './helpers';
33

44
/**
5-
* Phase 5 — Supporter mode, monthly donations
5+
* Supporter mode, monthly donations
66
*
77
* Tests the Donation Supporter Mode flow where the donation step comes first
88
* (before personal details and payment). Members choose a giving tier or enter

packages/join-e2e/tests/06-supporter-mode-oneoff.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test';
22
import { mockRestEndpoints, captureJoinBodyViaStripeRedirect, injectEnvOverrides, CONTINUE } from './helpers';
33

44
/**
5-
* Phase 6 — Supporter mode, one-off donations
5+
* Supporter mode, one-off donations
66
*
77
* Tests the one-off donation path within Supporter Mode. When Stripe card
88
* payments are available (USE_STRIPE=true, STRIPE_DIRECT_DEBIT_ONLY=false),

packages/join-e2e/tests/07-supporter-mode-edge-cases.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test';
22
import { mockRestEndpoints, captureJoinBodyViaStripeRedirect, injectEnvOverrides, CONTINUE } from './helpers';
33

44
/**
5-
* Phase 7 — Supporter mode edge cases and product naming
5+
* Supporter mode edge cases and product naming
66
*
77
* One-off tab disabled when Direct Debit Only is active:
88
* When STRIPE_DIRECT_DEBIT_ONLY=true, the One-off tab is disabled and an
@@ -21,7 +21,7 @@ import { mockRestEndpoints, captureJoinBodyViaStripeRedirect, injectEnvOverrides
2121
* a one-time PaymentIntent; backend uses the "Supporter Donation" product.
2222
*
2323
* Note: Free membership (payment skipped for zero-price plans) is covered by
24-
* Phase 3 (03-free-membership.spec.ts). Mailchimp non-fatal error handling is
24+
* 03-free-membership.spec.ts. Mailchimp non-fatal error handling is
2525
* a backend concern covered by JoinServiceMailchimpTest.php. Supporter mode
2626
* monthly via Direct Debit requires a live GoCardless integration.
2727
*/

0 commit comments

Comments
 (0)