summaryrefslogtreecommitdiff
path: root/web-ui/src/account_recovery/backup_account_step/backup_account_step.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/src/account_recovery/backup_account_step/backup_account_step.spec.js')
-rw-r--r--web-ui/src/account_recovery/backup_account_step/backup_account_step.spec.js10
1 files changed, 3 insertions, 7 deletions
diff --git a/web-ui/src/account_recovery/backup_account_step/backup_account_step.spec.js b/web-ui/src/account_recovery/backup_account_step/backup_account_step.spec.js
index 1d08670d..38a5e560 100644
--- a/web-ui/src/account_recovery/backup_account_step/backup_account_step.spec.js
+++ b/web-ui/src/account_recovery/backup_account_step/backup_account_step.spec.js
@@ -1,7 +1,7 @@
import { shallow } from 'enzyme';
import expect from 'expect';
import React from 'react';
-import SubmitButton from 'src/common/submit_button/submit_button';
+import LinkButton from 'src/common/link_button/link_button';
import { BackupAccountStep } from './backup_account_step';
describe('BackupAccountStep', () => {
@@ -17,15 +17,11 @@ describe('BackupAccountStep', () => {
});
it('renders submit button with given href', () => {
- expect(backupAccountStep.find(SubmitButton).props().href).toEqual('/backup-account');
- });
-
- it('renders submit button with given container element', () => {
- expect(backupAccountStep.find(SubmitButton).props().containerElement).toEqual('a');
+ expect(backupAccountStep.find(LinkButton).props().href).toEqual('/backup-account');
});
it('renders submit button with given button text', () => {
- expect(backupAccountStep.find(SubmitButton).props().buttonText)
+ expect(backupAccountStep.find(LinkButton).props().buttonText)
.toEqual('account-recovery.backup-account-step.buttonText');
});
});