31 lines
879 B
Go
31 lines
879 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual docCommentTemplateFunctionWithParameters_js"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestDocCommentTemplateFunctionWithParameters_js(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: /a.js
|
|
/*0*/
|
|
function f(a, ...b): boolean {}`
|
|
capabilities := fourslash.GetDefaultCapabilities()
|
|
capabilities.TextDocument.Completion.CompletionItem.SnippetSupport = new(false)
|
|
f, done := fourslash.NewFourslash(t, capabilities, content)
|
|
defer done()
|
|
f.VerifyJSDocCompletion(t, "0", 7, `/**
|
|
*
|
|
* @param {any} a
|
|
* @param {...any} b
|
|
*/`, nil)
|
|
}
|