vendor tsgo
This commit is contained in:
23
tools/tsgo/internal/fourslash/tests/gen/renameAlias_test.go
Normal file
23
tools/tsgo/internal/fourslash/tests/gen/renameAlias_test.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual renameAlias"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestRenameAlias(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `namespace SomeModule { export class SomeClass { } }
|
||||
[|import [|{| "contextRangeIndex": 0 |}M|] = SomeModule;|]
|
||||
import C = [|M|].SomeClass;`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineRenameAtRangesWithText(t, nil /*preferences*/, "M")
|
||||
}
|
||||
Reference in New Issue
Block a user