summaryrefslogtreecommitdiffstats
path: root/test/app/inventory/Inventory.test.js
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2019-03-12 02:57:39 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-12 02:57:39 +0000
commitb2c7546f9027099161aeaf5791f1d0f3a52b92d2 (patch)
tree32be51dc53e9cca8a2573b29183e6404ec9629c1 /test/app/inventory/Inventory.test.js
parent85fa41b6a03a3914788e825cb28db84b33772489 (diff)
parenteec9820acfb269178e8f8c8bdc2ecfb2d13ad5f4 (diff)
Merge "Add tests to Inventory module"
Diffstat (limited to 'test/app/inventory/Inventory.test.js')
-rw-r--r--test/app/inventory/Inventory.test.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/app/inventory/Inventory.test.js b/test/app/inventory/Inventory.test.js
new file mode 100644
index 0000000..45b3450
--- /dev/null
+++ b/test/app/inventory/Inventory.test.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import thunk from 'redux-thunk';
+
+import configureMockStore from 'redux-mock-store';
+import expect from 'expect';
+
+import Inventory from 'app/inventory/Inventory';
+import {shallow} from 'enzyme';
+
+
+const mockStore = configureMockStore([thunk]);
+const store = mockStore({inventoryReducer: {}});
+
+describe('Inventory component', () => {
+
+ fetch = require('jest-fetch-mock');
+
+ it('should be rendered', () => {
+
+ // when
+ let wrapper = shallow(
+ <Inventory store={store}/>
+ );
+
+ // then
+ let actual = wrapper.render().text();
+ expect(actual).toInclude('Active Inventory');
+ });
+
+});