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

29 lines
687 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestTrailingCommaSignatureHelp(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `function str(n: number): string;
/**
* Stringifies a number with radix
* @param radix The radix
*/
function str(n: number, radix: number): string;
function str(n: number, radix?: number): string { return ""; }
str(1, /*a*/)
declare function f<T>(a: T): T;
f(2, /*b*/);`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineSignatureHelp(t)
}