package fourslash_test import ( "testing" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash" "efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil" ) func TestTsxQuickInfo5(t *testing.T) { t.Parallel() t.Skip() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `//@Filename: file.tsx // @jsx: preserve // @noLib: true declare function ComponentWithTwoAttributes(l: {key1: K, value: V}): JSX.Element; function Baz(key1: T, value: U) { let a0 = let a1 = }` f := fourslash.NewFourslash(t, nil /*capabilities*/, content) f.VerifyQuickInfoAt(t, "1", "function ComponentWithTwoAttributes(l: {\n key1: T;\n value: U;\n}): JSX.Element", "") f.VerifyQuickInfoAt(t, "2", "(property) key1: T", "") f.VerifyQuickInfoAt(t, "3", "(property) value: U", "") }