37 lines
910 B
Go
37 lines
910 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual goToImplementation_inDifferentFiles"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestGoToImplementation_inDifferentFiles(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @lib: es5
|
|
// @Filename: /home/src/workspaces/project/bar.ts
|
|
import {Foo} from './foo'
|
|
|
|
class [|A|] implements Foo {
|
|
func() {}
|
|
}
|
|
|
|
class [|B|] implements Foo {
|
|
func() {}
|
|
}
|
|
// @Filename: /home/src/workspaces/project/foo.ts
|
|
export interface /**/Foo {
|
|
func();
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.MarkTestAsStradaServer()
|
|
f.VerifyBaselineGoToImplementation(t, "")
|
|
}
|