vendor tsgo
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual navigationBarItemsItemsModuleVariables"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestNavigationBarItemsItemsModuleVariables(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `// @Filename: navigationItemsModuleVariables_0.ts
|
||||
/*file1*/
|
||||
namespace Module1 {
|
||||
export var x = 0;
|
||||
}
|
||||
// @Filename: navigationItemsModuleVariables_1.ts
|
||||
/*file2*/
|
||||
namespace Module1.SubModule {
|
||||
export var y = 0;
|
||||
}
|
||||
// @Filename: navigationItemsModuleVariables_2.ts
|
||||
/*file3*/
|
||||
namespace Module1 {
|
||||
export var z = 0;
|
||||
}`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.GoToMarker(t, "file1")
|
||||
f.VerifyBaselineDocumentSymbol(t)
|
||||
f.GoToMarker(t, "file2")
|
||||
f.VerifyBaselineDocumentSymbol(t)
|
||||
}
|
||||
Reference in New Issue
Block a user