31 lines
652 B
Go
31 lines
652 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestJsdocLink2(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: jsdocLink2.ts
|
|
class C {
|
|
}
|
|
// @Filename: script.ts
|
|
/**
|
|
* {@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)
|
|
}
|