summaryrefslogtreecommitdiff
path: root/web-ui/src/common/link_button/link_button.spec.js
diff options
context:
space:
mode:
authorTulio Casagrande <tuliocasagrande@gmail.com>2017-04-05 11:34:48 -0300
committerGitHub <noreply@github.com>2017-04-05 11:34:48 -0300
commit658bc283585de7692af9b4d877962b2d0f96ebe0 (patch)
tree676b981ee3e4e4643f98816731c4e0f6fd5b9293 /web-ui/src/common/link_button/link_button.spec.js
parent770165d37909488519a76222a949d2353a3745f5 (diff)
parent8198fa48d2e42d89457940590ec4b308ee541090 (diff)
Merge pull request #1044 from pixelated/backup_account_during_recovery
Backup account at end of account recovery
Diffstat (limited to 'web-ui/src/common/link_button/link_button.spec.js')
-rw-r--r--web-ui/src/common/link_button/link_button.spec.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/web-ui/src/common/link_button/link_button.spec.js b/web-ui/src/common/link_button/link_button.spec.js
new file mode 100644
index 00000000..dd040d28
--- /dev/null
+++ b/web-ui/src/common/link_button/link_button.spec.js
@@ -0,0 +1,20 @@
+import { shallow } from 'enzyme';
+import expect from 'expect';
+import React from 'react';
+import LinkButton from 'src/common/link_button/link_button';
+
+describe('LinkButton', () => {
+ let linkButton;
+
+ beforeEach(() => {
+ linkButton = shallow(<LinkButton buttonText='Go To Link' href='/some-link' />);
+ });
+
+ it('renders link button with given button text', () => {
+ expect(linkButton.find('RaisedButton').props().label).toEqual('Go To Link');
+ });
+
+ it('renders link button with given href', () => {
+ expect(linkButton.find('RaisedButton').props().href).toEqual('/some-link');
+ });
+});