22 lines
630 B
Go
22 lines
630 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestRenameCommentsAndStrings1(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `///<reference path="./Bar.ts" />
|
|
[|function [|{| "contextRangeIndex": 0 |}Bar|]() {
|
|
// This is a reference to Bar in a comment.
|
|
"this is a reference to Bar in a string"
|
|
}|]`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineRenameAtRangesWithText(t, nil /*preferences*/, "Bar")
|
|
}
|