2025-10-15 10:12:44 +03:00

32 lines
695 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestJsdocLink3(t *testing.T) {
t.Parallel()
t.Skip()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @Filename: /jsdocLink3.ts
export class C {
}
// @Filename: /module1.ts
import { C } from './jsdocLink3'
/**
* {@link C}
* @wat Makes a {@link C}. A default one.
* {@link C()}
* {@link C|postfix text}
* {@link unformatted postfix text}
* @see {@link C} its great
*/
function /**/CC() {
}`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineHover(t)
}