kittenipc/kitcom/internal/tsgo/fourslash/tests/gen/parameterWithNestedDestructuring_test.go
2025-10-15 10:12:44 +03:00

23 lines
784 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestParameterWithNestedDestructuring(t *testing.T) {
t.Parallel()
t.Skip()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `[[{ a: 'hello', b: [1] }]]
.map(([{ a, b: [c] }]) => /*1*/a + /*2*/c);
function f([[/*3*/a]]: [[string]], { b1: { /*4*/b2 } }: { b1: { b2: string; } }) {}`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyQuickInfoAt(t, "1", "(parameter) a: string", "")
f.VerifyQuickInfoAt(t, "2", "(parameter) c: number", "")
f.VerifyQuickInfoAt(t, "3", "(parameter) a: string", "")
f.VerifyQuickInfoAt(t, "4", "(parameter) b2: string", "")
}