From 69c1d2db86f0530904c6bcb7130c5b13662ab0cf Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sat, 10 Aug 2019 01:49:40 +0530 Subject: [PATCH] Edit test title in utils.isNodeFunctionComponent --- test/utils.isNodeFunctionComponent.spec.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils.isNodeFunctionComponent.spec.tsx b/test/utils.isNodeFunctionComponent.spec.tsx index 09dbc23..4a6ffba 100644 --- a/test/utils.isNodeFunctionComponent.spec.tsx +++ b/test/utils.isNodeFunctionComponent.spec.tsx @@ -42,7 +42,7 @@ describe("utils", () => { 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 result = isNodeFunctionComponent(rootNode);