22 lines
686 B
Go
22 lines
686 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestQuickInfoSignatureRestParameterFromUnion2(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `declare const rest:
|
|
| ((a?: { a: true }, ...rest: string[]) => unknown)
|
|
| ((b?: { b: true }) => unknown);
|
|
|
|
/**/rest({ a: true, b: true }, "foo", "bar");`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyQuickInfoAt(t, "", "const rest: (arg0?: {\n a: true;\n} & {\n b: true;\n}, ...rest: string[]) => unknown", "")
|
|
}
|