Update founder signup copy to highlight unlimited features
This commit is contained in:
parent
530e4a0257
commit
50ee39104b
4 changed files with 8 additions and 4 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 }));
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue