Add collaboration feature

Issue-ID: SDC-767
Change-Id: I14fb4c1f54086ed03a56a7ff7fab9ecd40381795
Signed-off-by: talig <talig@amdocs.com>
diff --git a/openecomp-ui/test/nfvo-components/modal/globalModal.test.js b/openecomp-ui/test/nfvo-components/modal/globalModal.test.js
index efe43b6..f27b135 100644
--- a/openecomp-ui/test/nfvo-components/modal/globalModal.test.js
+++ b/openecomp-ui/test/nfvo-components/modal/globalModal.test.js
@@ -81,10 +81,10 @@
 
 
 	it('checking component default render', ()=> {
-		expect(window.document).toBeTruthy();		
-		let globalModalView = TestUtils.renderIntoDocument(
-			<GlobalModalView show={true} type={typeEnum.WARNING} title={title} msg={msg} onDeclined={()=>{}} />
-		);
+		expect(window.document).toBeTruthy();
+		let renderer = TestUtils.createRenderer();
+		renderer.render(<GlobalModalView show={true} type={typeEnum.WARNING} title={title} msg={msg} onDeclined={()=>{}} />);
+		let globalModalView = renderer.getRenderOutput();
 		expect(globalModalView).toBeTruthy();
 	});