Files
kjol/tools/tsgo/internal/fourslash/tests/gen/formattingSingleLineWithNewLineOptionSet_test.go
2026-07-09 16:50:43 -04:00

41 lines
1.3 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual formattingSingleLineWithNewLineOptionSet"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/core"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestFormattingSingleLineWithNewLineOptionSet(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `/*1*/namespace Default{}
/*2*/function foo(){}
/*3*/if (true){}
/*4*/function boo() {
}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
opts211 := f.GetOptions()
opts211.FormatCodeSettings.PlaceOpenBraceOnNewLineForFunctions = core.TSTrue
f.Configure(t, opts211)
opts279 := f.GetOptions()
opts279.FormatCodeSettings.PlaceOpenBraceOnNewLineForControlBlocks = core.TSTrue
f.Configure(t, opts279)
f.FormatDocument(t, "")
f.GoToMarker(t, "1")
f.VerifyCurrentLineContent(t, `namespace Default { }`)
f.GoToMarker(t, "2")
f.VerifyCurrentLineContent(t, `function foo() { }`)
f.GoToMarker(t, "3")
f.VerifyCurrentLineContent(t, `if (true) { }`)
f.GoToMarker(t, "4")
f.VerifyCurrentLineContent(t, `function boo()`)
}