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

29 lines
704 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestSignatureHelpRestArgs2(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @strict: true
// @allowJs: true
// @checkJs: true
// @filename: index.js
const promisify = function (thisArg, fnName) {
const fn = thisArg[fnName];
return function () {
return new Promise((resolve) => {
fn.call(thisArg, ...arguments, /*1*/);
});
};
};`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineSignatureHelp(t)
}