summaryrefslogtreecommitdiff
path: root/web-ui/src
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2017-03-28 11:43:29 -0300
committerAnike Arni <aarni@thoughtworks.com>2017-03-28 11:44:41 -0300
commitc7d135c20c70b6bd5936177db90a7b8ce2d278c0 (patch)
tree609890b3760c2855d682da5e8b04edac52e97d81 /web-ui/src
parentd39f2b2907aa49f5fa383d2246875220a77c818c (diff)
[#932] Tests next step of account recovery is translated
Diffstat (limited to 'web-ui/src')
-rw-r--r--web-ui/src/account_recovery/forms/admin_recovery_code_form.js2
-rw-r--r--web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js19
2 files changed, 20 insertions, 1 deletions
diff --git a/web-ui/src/account_recovery/forms/admin_recovery_code_form.js b/web-ui/src/account_recovery/forms/admin_recovery_code_form.js
index ea71566b..0a28e8b2 100644
--- a/web-ui/src/account_recovery/forms/admin_recovery_code_form.js
+++ b/web-ui/src/account_recovery/forms/admin_recovery_code_form.js
@@ -25,7 +25,7 @@ import './admin_recovery_code_form.scss';
export const AdminRecoveryCodeForm = ({ t, next }) => (
- <form onSubmit={next}>
+ <form className='admin-code-form' onSubmit={next}>
<h1>{t('account-recovery.admin-form.title')}</h1>
<ul>
<li>{t('account-recovery.admin-form.tip1')}</li>
diff --git a/web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js b/web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js
new file mode 100644
index 00000000..ade96f9c
--- /dev/null
+++ b/web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js
@@ -0,0 +1,19 @@
+import { shallow } from 'enzyme';
+import expect from 'expect';
+import React from 'react';
+import { UserRecoveryCodeForm } from 'src/account_recovery/forms/user_recovery_code_form';
+
+describe('UserRecoveryCodeForm', () => {
+ let userRecoveryCodeForm;
+
+ beforeEach(() => {
+ const mockTranslations = key => key;
+ userRecoveryCodeForm = shallow(
+ <UserRecoveryCodeForm t={mockTranslations} />
+ );
+ });
+
+ it('renders title for user recovery code', () => {
+ expect(userRecoveryCodeForm.find('h1').text()).toEqual('account-recovery.user-form.title');
+ });
+});