26 lines
621 B
Go
26 lines
621 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestJsDocIndentationPreservation2(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: Foo.js
|
|
/**
|
|
Does some stuff.
|
|
Second line.
|
|
Third line.
|
|
*/
|
|
function foo/**/(){}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.GoToMarker(t, "")
|
|
f.VerifyQuickInfoIs(t, "function foo(): void", "Does some stuff.\n Second line.\n\tThird line.")
|
|
}
|