46 lines
1.4 KiB
Go
46 lines
1.4 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/lsp/lsproto"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestCompletionCloneQuestionToken(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: /file2.ts
|
|
type TCallback<T = any> = (options: T) => any;
|
|
type InKeyOf<E> = { [K in keyof E]?: TCallback<E[K]>; };
|
|
export class Bar<A> {
|
|
baz(a: InKeyOf<A>): void { }
|
|
}
|
|
// @Filename: /file1.ts
|
|
import { Bar } from './file2';
|
|
type TwoKeys = Record<'a' | 'b', { thisFails?: any; }>
|
|
class Foo extends Bar<TwoKeys> {
|
|
/**/
|
|
}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Includes: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "baz",
|
|
InsertText: PtrTo("baz(a: { a?: (options: { thisFails?: any; }) => any; b?: (options: { thisFails?: any; }) => any; }): void {\n}"),
|
|
FilterText: PtrTo("baz"),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|