diff options
author | thaissiqueira <thais.siqueira@thoughtworks.com> | 2017-03-14 17:12:39 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-14 17:12:39 -0300 |
commit | f3737daf1fb3a78a919382b8c682cbf3c480bade (patch) | |
tree | fd58a771e7f94699e337a1e651476910f2dbd0ea /web-ui/src/backup_account/page.spec.js | |
parent | 168616b722e637c6973c821fb481e217271bf4d5 (diff) | |
parent | c87f26bbfe9839fb3ca9845484e554a4116aef33 (diff) |
Merge pull request #1008 from pixelated/confirmation-page
[#971] Extract Backup email page to a new component
Diffstat (limited to 'web-ui/src/backup_account/page.spec.js')
-rw-r--r-- | web-ui/src/backup_account/page.spec.js | 67 |
1 files changed, 2 insertions, 65 deletions
diff --git a/web-ui/src/backup_account/page.spec.js b/web-ui/src/backup_account/page.spec.js index 334d3ba8..2f4bc7c1 100644 --- a/web-ui/src/backup_account/page.spec.js +++ b/web-ui/src/backup_account/page.spec.js @@ -11,70 +11,7 @@ describe('BackupAccount', () => { page = shallow(<Page t={mockTranslations} />); }); - it('renders backup email page title', () => { - expect(page.find('h1').text()).toEqual('backup-account.title'); - }); - - it('renders backup account email input field', () => { - expect(page.find('InputField').props().name).toEqual('email'); - }); - - it('renders backup account submit button', () => { - expect(page.find('SubmitButton').props().buttonText).toEqual('backup-account.button'); - }); - - describe('Email validation', () => { - let pageInstance; - - beforeEach(() => { - pageInstance = page.instance(); - }); - - it('verify initial state', () => { - expect(pageInstance.state.error).toEqual(''); - expect(page.find('SubmitButton').props().disabled).toEqual(true); - }); - - context('with invalid email', () => { - beforeEach(() => { - pageInstance.validateEmail({ target: { value: 'test' } }); - }); - - it('sets error in state', () => { - expect(pageInstance.state.error).toEqual('backup-account.error.invalid-email'); - }); - - it('disables submit button', () => { - expect(page.find('SubmitButton').props().disabled).toEqual(true); - }); - }); - - context('with valid email', () => { - beforeEach(() => { - pageInstance.validateEmail({ target: { value: 'test@test.com' } }); - }); - - it('does not set error in state', () => { - expect(pageInstance.state.error).toEqual(''); - }); - - it('submit button is enabled', () => { - expect(page.find('SubmitButton').props().disabled).toEqual(false); - }); - }); - - context('with empty email', () => { - beforeEach(() => { - pageInstance.validateEmail({ target: { value: '' } }); - }); - - it('not set error in state', () => { - expect(pageInstance.state.error).toEqual(''); - }); - - it('disables submit button', () => { - expect(page.find('SubmitButton').props().disabled).toEqual(true); - }); - }); + it('renders backup account page title', () => { + expect(page.props().title).toEqual('backup-account.page-title'); }); }); |