vendor tsgo
This commit is contained in:
19
tools/tsgo/internal/fourslash/tests/quickInfoCatch_test.go
Normal file
19
tools/tsgo/internal/fourslash/tests/quickInfoCatch_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 TestQuickCatchInfo(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `try {} catch(/*1*/error) {}`
|
||||
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyQuickInfoAt(t, "1", "var error: unknown", "")
|
||||
}
|
||||
Reference in New Issue
Block a user