vendor tsgo
This commit is contained in:
19
tools/tsgo/internal/fourslash/tests/findAllRefsConst_test.go
Normal file
19
tools/tsgo/internal/fourslash/tests/findAllRefsConst_test.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestFindAllRefsConst(t *testing.T) {
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `// @Filename: a.ts
|
||||
/**/const const
|
||||
`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineFindAllReferences(t, "")
|
||||
}
|
||||
Reference in New Issue
Block a user