From 5a2b7b2f0122df689f477f009d6450c0ad6b4944 Mon Sep 17 00:00:00 2001 From: Ovidiu Bute Date: Wed, 2 Jan 2019 11:43:11 +0200 Subject: [PATCH] Work around prettier issue. --- types/linkifyjs/linkifyjs-tests.tsx | 36 ++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/types/linkifyjs/linkifyjs-tests.tsx b/types/linkifyjs/linkifyjs-tests.tsx index 57c91dae5a..23ae8e3722 100644 --- a/types/linkifyjs/linkifyjs-tests.tsx +++ b/types/linkifyjs/linkifyjs-tests.tsx @@ -182,28 +182,38 @@ describe("linkifyjs/react", () => { /* Default values for all props */ { + const content = + "For help with GitHub.com, please email support@github.com"; - Hello https://google.com - + {content} + ; } - + /* Custom class name */ { - - Hello https://google.com - + const content = + "For help with GitHub.com, please email support@github.com"; + + {content} + ; } /* Custom tag name */ { - - Hello https://google.com - + const content = + "For help with GitHub.com, please email support@github.com"; + + {content} + ; } });