// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual completionsLiteralOverload" 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/testutil" ) func TestCompletionsLiteralOverload(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// @allowJs: true // @Filename: /a.tsx interface Events { "": any; drag: any; dragenter: any; } declare function addListener(type: K, listener: (ev: Events[K]) => any): void; declare function ListenerComponent(props: { type: K, onWhatever: (ev: Events[K]) => void }): JSX.Element; addListener("/*ts*/"); (); // @Filename: /b.js addListener("/*js*/");` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyCompletions(t, []string{"ts", "tsx", "js"}, &fourslash.CompletionsExpectedList{ IsIncomplete: false, ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{ CommitCharacters: &DefaultCommitCharacters, EditRange: Ignored, }, Items: &fourslash.CompletionsExpectedItems{ Exact: []fourslash.CompletionsExpectedItem{ "", "drag", "dragenter", }, }, }) f.Insert(t, "drag") f.VerifyCompletions(t, []string{"ts", "tsx", "js"}, &fourslash.CompletionsExpectedList{ IsIncomplete: false, ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{ CommitCharacters: &DefaultCommitCharacters, EditRange: Ignored, }, Items: &fourslash.CompletionsExpectedItems{ Exact: []fourslash.CompletionsExpectedItem{ "", "drag", "dragenter", }, }, }) }