package fourslash import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestAutoCloseFragment(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") // Using separate files for each example to avoid unclosed JSX tags affecting other tests. const content = `// @noLib: true // @Filename: /0.tsx const x = <>/*0*/; // @Filename: /1.tsx const x = <> foo/*1*/ ; // @Filename: /2.tsx const x = <>/*2*/; // @Filename: /3.tsx const x = /*3*/; // @Filename: /4.tsx const x =
<>/*4*/
; // @Filename: /5.tsx const x = <> text /*5*/; // @Filename: /6.tsx const x = <> <>/*6*/ ; // @Filename: /7.tsx const x =
<>/*7*/
; // @Filename: /8.tsx const x =
<>/*8*/
; // @Filename: /9.tsx const x =

<> <>/*9*/

` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyJsxClosingTag(t, map[string]*string{ "0": new(""), "1": nil, "2": nil, "3": nil, "4": new(""), "5": new(""), "6": new(""), "7": new(""), "8": nil, "9": new(""), }) }