richie-education 3.3.2-dev33 → 3.3.2-dev34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -143,7 +143,7 @@ const messages = defineMessages({
|
|
|
143
143
|
id: 'components.SaleTunnel.Information.cpf.description',
|
|
144
144
|
description: 'Explanatory text for the CPF payment option',
|
|
145
145
|
defaultMessage:
|
|
146
|
-
'
|
|
146
|
+
'Purchase your training course by using your Personal Training Account (CPF) on Mon Compte Formation.',
|
|
147
147
|
},
|
|
148
148
|
cpfButtonLabel: {
|
|
149
149
|
id: 'components.SaleTunnel.Information.cpf.buttonLabel',
|
|
@@ -166,7 +166,9 @@ describe('SaleTunnel / Credential', () => {
|
|
|
166
166
|
|
|
167
167
|
// - CPF description and redirect button should be visible.
|
|
168
168
|
expect(
|
|
169
|
-
screen.getByText(
|
|
169
|
+
screen.getByText(
|
|
170
|
+
/purchase your training course by using your Personal Training Account \(CPF\) on Mon Compte Formation/i,
|
|
171
|
+
),
|
|
170
172
|
).toBeInTheDocument();
|
|
171
173
|
const cpfButton = screen.getByRole('link', { name: /go to mon compte formation/i });
|
|
172
174
|
|