33 lines
997 B
Go
33 lines
997 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestRenameFromNodeModulesDep3(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: /packages/first/index.d.ts
|
|
import { /*ok*/[|Foo|] } from "foo";
|
|
declare type FooBar = Foo[/*ok2*/"[|bar|]"];
|
|
// @Filename: /packages/foo/package.json
|
|
{ "types": "index.d.ts" }
|
|
// @Filename: /packages/foo/index.d.ts
|
|
export interface Foo {
|
|
/*ok3*/[|bar|]: string;
|
|
}
|
|
// @link: /packages/foo -> /packages/first/node_modules/foo`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.GoToMarker(t, "ok")
|
|
f.VerifyRenameSucceeded(t, nil /*preferences*/)
|
|
f.VerifyRenameSucceeded(t, nil /*preferences*/)
|
|
f.GoToMarker(t, "ok2")
|
|
f.VerifyRenameSucceeded(t, nil /*preferences*/)
|
|
f.GoToMarker(t, "ok3")
|
|
f.VerifyRenameSucceeded(t, nil /*preferences*/)
|
|
}
|