Files
kjol/tools/tsgo/internal/fourslash/tests/manual/exhaustiveCaseCompletions7_test.go
2026-07-09 16:50:43 -04:00

42 lines
1.3 KiB
Go

package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
. "github.com/microsoft/typescript-go/internal/fourslash/tests/util"
"github.com/microsoft/typescript-go/internal/ls"
"github.com/microsoft/typescript-go/internal/lsp/lsproto"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestExhaustiveCaseCompletions7(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @newline: LF
export function foo(position: -1 | 0 | 1) {
switch (position) {
/**/
}
}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
IsIncomplete: false,
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
CommitCharacters: &DefaultCommitCharacters,
EditRange: Ignored,
},
Items: &fourslash.CompletionsExpectedItems{
Includes: []fourslash.CompletionsExpectedItem{
&lsproto.CompletionItem{
Label: "case -1: ...",
InsertText: new("case -1:$1\ncase 0:$2\ncase 1:$3"),
SortText: new(string(ls.SortTextGlobalsOrKeywords)),
InsertTextFormat: new(lsproto.InsertTextFormatSnippet),
},
},
},
})
}