29 lines
687 B
Go
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)
|
|
}
|