27 lines
831 B
Go
27 lines
831 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual quickInfoSignatureOptionalParameterFromUnion1"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestQuickInfoSignatureOptionalParameterFromUnion1(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @strict: false
|
|
declare const optionals:
|
|
| ((a?: { a: true }) => unknown)
|
|
| ((b?: { b: true }) => unknown);
|
|
|
|
/**/optionals();`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyQuickInfoAt(t, "", "const optionals: (arg0?: {\n a: true;\n} & {\n b: true;\n}) => unknown", "")
|
|
}
|