23 lines
550 B
Go
23 lines
550 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestIsDefinitionOverloads(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `function /*1*/f(x: number): void;
|
|
function /*2*/f(x: string): void;
|
|
function /*3*/f(x: number | string) { }
|
|
|
|
f(1);
|
|
f("a");`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineFindAllReferences(t, "1", "2", "3")
|
|
}
|