summaryrefslogtreecommitdiff
path: root/web-ui/src/common/link_button/link_button.spec.js
diff options
context:
space:
mode:
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..945afffe
--- /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('FlatButton').props().label).toEqual('Go To Link');
+ });
+
+ it('renders link button with given href', () => {
+ expect(linkButton.find('FlatButton').props().href).toEqual('/some-link');
+ });
+});