72 lines
1.9 KiB
Go
72 lines
1.9 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 TestPathCompletionsPackageJsonImportsWildcard1(t *testing.T) {
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @module: node18
|
|
// @Filename: /package.json
|
|
{
|
|
"name": "foo",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"imports": {
|
|
"#*": {
|
|
"types": "./dist/*.d.ts",
|
|
"import": "./dist/*.mjs",
|
|
"default": "./dist/*.js"
|
|
},
|
|
"#arguments": {
|
|
"types": "./dist/arguments/index.d.ts",
|
|
"import": "./dist/arguments/index.mjs",
|
|
"default": "./dist/arguments/index.js"
|
|
}
|
|
}
|
|
}
|
|
// @Filename: /dist/index.d.ts
|
|
export const index = 0;
|
|
// @Filename: /dist/blah.d.ts
|
|
export const blah = 0;
|
|
// @Filename: /dist/arguments/index.d.ts
|
|
export const arguments = 0;
|
|
// @Filename: /index.mts
|
|
import { } from "/**/";`
|
|
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{
|
|
Unsorted: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "#blah",
|
|
Kind: new(lsproto.CompletionItemKindFile),
|
|
Detail: new("#blah.d.ts"),
|
|
},
|
|
&lsproto.CompletionItem{
|
|
Label: "#index",
|
|
Kind: new(lsproto.CompletionItemKindFile),
|
|
Detail: new("#index.d.ts"),
|
|
},
|
|
&lsproto.CompletionItem{
|
|
Label: "#arguments",
|
|
Kind: new(lsproto.CompletionItemKindFile),
|
|
Detail: new("#arguments.d.ts"),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|