49 lines
1.3 KiB
Go
49 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/lsp/lsproto"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestPathCompletionsPackageJsonExportsWildcard10(t *testing.T) {
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @module: preserve
|
|
// @moduleResolution: bundler
|
|
// @allowImportingTsExtensions: true
|
|
// @jsx: react
|
|
// @Filename: /node_modules/repo/package.json
|
|
{
|
|
"name": "repo",
|
|
"exports": {
|
|
"./*": "./src/*"
|
|
}
|
|
}
|
|
// @Filename: /node_modules/repo/src/card.tsx
|
|
export {};
|
|
// @Filename: /main.ts
|
|
import { } from "repo//**/";`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "card.tsx",
|
|
Kind: new(lsproto.CompletionItemKindFile),
|
|
Detail: new("card.tsx"),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|