44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
. "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash/tests/util"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestCompletionsWrappedClass(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `class Client {
|
|
private close() { }
|
|
public open() { }
|
|
}
|
|
type Wrap<T> = T &
|
|
{
|
|
[K in Extract<keyof T, string> as ` + "`" + `${K}Wrapped` + "`" + `]: T[K];
|
|
};
|
|
class Service {
|
|
method() {
|
|
let service = undefined as unknown as Wrap<Client>;
|
|
const { /*a*/ } = service;
|
|
}
|
|
}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, "a", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
"open",
|
|
"openWrapped",
|
|
},
|
|
},
|
|
})
|
|
}
|