Fix flow errors

This commit is contained in:
Jori Lallo
2017-05-09 23:14:24 -07:00
parent e051713177
commit 75ad27658e
19 changed files with 519 additions and 179 deletions

View File

@@ -11,10 +11,6 @@ const testHtml = `
`;
test('renders', () => {
const wrapper = shallow(
<DocumentHtml
html={ testHtml }
/>
);
const wrapper = shallow(<DocumentHtml html={testHtml} />);
expect(wrapper.find('.document').length).toBe(1);
});