summaryrefslogtreecommitdiff
path: root/web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js
diff options
context:
space:
mode:
authorAnike Arni <anikarni@gmail.com>2017-03-28 15:22:12 -0300
committerGitHub <noreply@github.com>2017-03-28 15:22:12 -0300
commit444b39959ad1c34fb9eb91def835d9e695710374 (patch)
tree609890b3760c2855d682da5e8b04edac52e97d81 /web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js
parenta9462a5d761aab4d4bcd89412fb265155c981972 (diff)
parentc7d135c20c70b6bd5936177db90a7b8ce2d278c0 (diff)
Merge pull request #1028 from pixelated/forgot-password-page
Adds admin code form and logic for next step of recovery form
Diffstat (limited to 'web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js')
-rw-r--r--web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js19
1 files changed, 19 insertions, 0 deletions
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');
+ });
+});