Update founder signup copy to highlight unlimited features

This commit is contained in:
Arthur Belleville 2026-03-24 20:58:49 +01:00
parent 530e4a0257
commit 50ee39104b
No known key found for this signature in database
4 changed files with 8 additions and 4 deletions

View file

@ -69,7 +69,9 @@ describe("SignUpV2Page", () => {
it("submits founder billing intent when selected", async () => {
renderWithProviders(<SignUpV2Page />);
expect(screen.getByText(/limité à 50 sièges/i)).toBeInTheDocument();
expect(
screen.getByText(/fonctionnalités illimitées\. limité à 50 sièges\./i)
).toBeInTheDocument();
fireEvent.click(screen.getByRole("button", { name: /founder/i }));
fillAndSubmitForm();

View file

@ -286,7 +286,7 @@ export function SignUpV2Page() {
>
<p className="text-sm font-medium">Founder (99/an)</p>
<p className="text-xs text-muted-foreground">
Paiement immédiat après la création du compte. Limité à 50 sièges.
Fonctionnalités illimitées. Limité à 50 sièges.
</p>
</button>
</div>

View file

@ -232,7 +232,9 @@ describe("SignUpPage", () => {
it("submits founder billing intent when selected", async () => {
renderWithProviders(<SignUpPage />);
expect(screen.getByText(/limité à 50 sièges/i)).toBeInTheDocument();
expect(
screen.getByText(/fonctionnalités illimitées\. limité à 50 sièges\./i)
).toBeInTheDocument();
fireEvent.click(screen.getByRole("button", { name: /founder/i }));

View file

@ -375,7 +375,7 @@ export function SignUpPage() {
>
<p className="text-sm font-medium">Founder (99/an)</p>
<p className="text-xs text-muted-foreground">
Paiement immédiat après la création du compte. Limité à 50 sièges.
Fonctionnalités illimitées. Limité à 50 sièges.
</p>
</button>
</div>