Files
kjol/tools/tsgo/internal/fourslash/tests/gen/signatureHelpOnOverloadsDifferentArity3_test.go
2026-07-09 16:50:43 -04:00

32 lines
1.2 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual signatureHelpOnOverloadsDifferentArity3"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestSignatureHelpOnOverloadsDifferentArity3(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `declare function f();
declare function f(s: string);
declare function f(s: string, b: boolean);
declare function f(n: number, b: boolean);
f(/**/`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.GoToMarker(t, "")
f.VerifySignatureHelp(t, fourslash.VerifySignatureHelpOptions{Text: "f(): any", ParameterCount: 0, OverloadsCount: 4})
f.Insert(t, "x, ")
f.VerifySignatureHelp(t, fourslash.VerifySignatureHelpOptions{Text: "f(s: string, b: boolean): any", ParameterCount: 2, ParameterName: "b", ParameterSpan: "b: boolean", OverloadsCount: 4})
f.Insert(t, "x, ")
f.VerifySignatureHelp(t, fourslash.VerifySignatureHelpOptions{Text: "f(s: string, b: boolean): any", ParameterCount: 2, OverloadsCount: 4})
}