summaryrefslogtreecommitdiff
path: root/web-ui/src/common/link_button/link_button.spec.js
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-04-05 11:17:29 -0300
committerSriram Viswanathan <sriramv@thoughtworks.com>2017-04-05 11:17:29 -0300
commit8198fa48d2e42d89457940590ec4b308ee541090 (patch)
tree553bcbfd3a61daac8fb4e11d826ea477557162c4 /web-ui/src/common/link_button/link_button.spec.js
parentd8ade045a17be8de98ea2a501dbdb7ba166de094 (diff)
[#938] Replaces submit button with a link button for redirection
with @anikarni
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');
+ });
+});