X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fsparky-fe.git;a=blobdiff_plain;f=test%2Fapp%2FApplication.test.js;fp=test%2Fapp%2FApplication.test.js;h=87d6c4c762b0127d73ef93b38c9075224bbcee0a;hp=0000000000000000000000000000000000000000;hb=371c0e2a5b8ddca26453e269a9170570832d6cc9;hpb=d07851ce63f310aca9bb7b2c79943f9fe1928dcb diff --git a/test/app/Application.test.js b/test/app/Application.test.js new file mode 100644 index 0000000..87d6c4c --- /dev/null +++ b/test/app/Application.test.js @@ -0,0 +1,14 @@ +import React from 'react'; +import {shallow} from 'enzyme'; +import Application from 'app/Application'; + +describe('Application', () => { + it('renders children when passed in', () => { + const wrapper = shallow(( + +
+ + )); + expect(wrapper.contains(
)).toEqual(true); + }); +}); \ No newline at end of file