kittenipc/kitcom/internal/tsgo/fourslash/tests/gen/renameInheritedProperties7_test.go
2025-10-15 10:12:44 +03:00

27 lines
595 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestRenameInheritedProperties7(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `class C extends D {
[|[|{| "contextRangeIndex": 0 |}prop1|]: string;|]
}
class D extends C {
prop1: string;
}
var c: C;
c.[|prop1|];`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineRenameAtRangesWithText(t, nil /*preferences*/, "prop1")
}