28 lines
774 B
Go
28 lines
774 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual formatSelectionEditAtEndOfRange"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestFormatSelectionEditAtEndOfRange(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `/*1*/var x = 1;/*2*/
|
|
void 0;`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
opts110 := f.GetOptions()
|
|
opts110.FormatCodeSettings.Semicolons = "remove"
|
|
f.Configure(t, opts110)
|
|
f.FormatSelection(t, "1", "2")
|
|
f.VerifyCurrentFileContent(t, `var x = 1
|
|
void 0;`)
|
|
}
|