aboutsummaryrefslogtreecommitdiffstats
path: root/test/react/Button.spec.js
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2018-05-21 20:19:48 +0000
committerGerrit Code Review <gerrit@onap.org>2018-05-21 20:19:48 +0000
commit05b37297177e8a342668c15e5d6f738b51f7aedd (patch)
treee236c96df52a13f935292db8aa73e84d0c41ad8a /test/react/Button.spec.js
parent884dfb789593d2a3cc319047ab1f0215778aec9f (diff)
parent1994c98063c27a41797dec01f2ca9fcbe33ceab0 (diff)
Merge "init commit onap ui"HEAD2.0.0-ONAPmasterbeijing2.0.0-ONAP
Diffstat (limited to 'test/react/Button.spec.js')
-rw-r--r--test/react/Button.spec.js77
1 files changed, 77 insertions, 0 deletions
diff --git a/test/react/Button.spec.js b/test/react/Button.spec.js
new file mode 100644
index 0000000..3b3b72e
--- /dev/null
+++ b/test/react/Button.spec.js
@@ -0,0 +1,77 @@
+import React from 'react';
+import Button from '../../src/react/Button.js';
+
+import renderer from 'react-test-renderer';
+
+describe('Button', () => {
+ test('Button - Default - Primary', () => {
+ const button = renderer.create(<Button>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Default - Primary - Disabled', () => {
+ const button = renderer.create(<Button disabled>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Default - White', () => {
+ const button = renderer.create(<Button color='white'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Default - Gray', () => {
+ const button = renderer.create(<Button color='gray'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Default - Positive', () => {
+ const button = renderer.create(<Button color='positive'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Default - Negative', () => {
+ const button = renderer.create(<Button color='negative'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Default - Warning', () => {
+ const button = renderer.create(<Button color='warning'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Outline - Primary', () => {
+ const button = renderer.create(<Button btnType='outline'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Outline - Gray', () => {
+ const button = renderer.create(<Button btnType='outline' color='gray'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Outline - Positive', () => {
+ const button = renderer.create(<Button btnType='outline' color='positive'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Outline - Negative', () => {
+ const button = renderer.create(<Button btnType='outline' color='negative'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Link - Primary', () => {
+ const button = renderer.create(<Button btnType='link' color='primary'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Link - Primary - Disabled', () => {
+ const button = renderer.create(<Button btnType='link' color='primary' disabled>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+ test('Button - Link - Primary - With Icon', () => {
+ const button = renderer.create(<Button btnType='link' color='primary' iconName='plus'>Click Me</Button>).toJSON();
+ expect(button).toMatchSnapshot();
+ });
+
+});