35 lines
1.0 KiB
Go
35 lines
1.0 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual formattingOnDoWhileNoSemicolon"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestFormattingOnDoWhileNoSemicolon(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `/*2*/do {
|
|
/*3*/ for (var i = 0; i < 10; i++)
|
|
/*4*/ i -= 2
|
|
/*5*/ }/*1*/while (1 !== 1)`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToMarker(t, "1")
|
|
f.Insert(t, "\n")
|
|
f.VerifyCurrentLineContent(t, `while (1 !== 1)`)
|
|
f.GoToMarker(t, "2")
|
|
f.VerifyCurrentLineContent(t, `do {`)
|
|
f.GoToMarker(t, "3")
|
|
f.VerifyCurrentLineContent(t, ` for (var i = 0; i < 10; i++)`)
|
|
f.GoToMarker(t, "4")
|
|
f.VerifyCurrentLineContent(t, ` i -= 2`)
|
|
f.GoToMarker(t, "5")
|
|
f.VerifyCurrentLineContent(t, `}`)
|
|
}
|