40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual formatNestedClassWithOpenBraceOnNewLines"
|
|
|
|
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 TestFormatNestedClassWithOpenBraceOnNewLines(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `module A
|
|
{
|
|
class B {
|
|
/*1*/
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
opts168 := f.GetOptions()
|
|
opts168.FormatCodeSettings.PlaceOpenBraceOnNewLineForControlBlocks = core.TSTrue
|
|
f.Configure(t, opts168)
|
|
opts232 := f.GetOptions()
|
|
opts232.FormatCodeSettings.PlaceOpenBraceOnNewLineForFunctions = core.TSTrue
|
|
f.Configure(t, opts232)
|
|
f.GoToMarker(t, "1")
|
|
f.Insert(t, "}")
|
|
f.VerifyCurrentFileContent(t, `module A
|
|
{
|
|
class B
|
|
{
|
|
}
|
|
}`)
|
|
}
|