30 lines
704 B
Go
30 lines
704 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestDocumentHighlightTemplateStrings(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `type Foo = "[|a|]" | "b";
|
|
|
|
class C {
|
|
p: Foo = ` + "`" + `[|a|]` + "`" + `;
|
|
m() {
|
|
switch (this.p) {
|
|
case ` + "`" + `[|a|]` + "`" + `:
|
|
return 1;
|
|
case "b":
|
|
return 2;
|
|
}
|
|
}
|
|
}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineDocumentHighlights(t, nil /*preferences*/, f.Ranges()[2])
|
|
}
|