diff options
Diffstat (limited to 'web-ui/src/account_recovery/forms')
-rw-r--r-- | web-ui/src/account_recovery/forms/admin_recovery_code_form.js | 2 | ||||
-rw-r--r-- | web-ui/src/account_recovery/forms/user_recovery_code_form.spec.js | 19 |
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'); + }); +}); |