Edit test title in utils.isNodeFunctionComponent

This commit is contained in:
2019-08-10 01:49:40 +05:30
parent 86216d3b05
commit 69c1d2db86
+1 -1
View File
@@ -42,7 +42,7 @@ describe("utils", () => {
expect(result).toBe(false); expect(result).toBe(false);
}); });
it("should work for html like component - div", () => { it("should not work for html like component - div", () => {
const rootNode = mountAndGetRootNode("div", container); const rootNode = mountAndGetRootNode("div", container);
const result = isNodeFunctionComponent(rootNode); const result = isNodeFunctionComponent(rootNode);