29 lines
789 B
Go
29 lines
789 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual referencesForGlobals5"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestReferencesForGlobals5(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: referencesForGlobals_1.ts
|
|
namespace globalModule {
|
|
export var x;
|
|
}
|
|
|
|
/*1*/import /*2*/globalAlias = globalModule;
|
|
// @Filename: referencesForGlobals_2.ts
|
|
var m = /*3*/globalAlias;`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineFindAllReferences(t, "1", "2", "3")
|
|
}
|