diff --git a/app/static/app/js/components/tests/SortPanel.test.jsx b/app/static/app/js/components/tests/SortPanel.test.jsx new file mode 100644 index 00000000..1b6797a4 --- /dev/null +++ b/app/static/app/js/components/tests/SortPanel.test.jsx @@ -0,0 +1,15 @@ +import React from 'react'; +import { shallow } from 'enzyme'; +import SortPanel from '../SortPanel'; + +var sortItems = [{ + key: "created_at", + label: "Created on" +}]; + +describe('', () => { + it('renders without exploding', () => { + const wrapper = shallow(); + expect(wrapper.exists()).toBe(true); + }) +}); \ No newline at end of file diff --git a/app/static/app/js/components/tests/TagsField.test.jsx b/app/static/app/js/components/tests/TagsField.test.jsx new file mode 100644 index 00000000..72f0ee96 --- /dev/null +++ b/app/static/app/js/components/tests/TagsField.test.jsx @@ -0,0 +1,10 @@ +import React from 'react'; +import { shallow } from 'enzyme'; +import TagsField from '../TagsField'; + +describe('', () => { + it('renders without exploding', () => { + const wrapper = shallow(); + expect(wrapper.exists()).toBe(true); + }) +}); \ No newline at end of file