85 lines
2.4 KiB
Go
85 lines
2.4 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 TestPathCompletionsPackageJsonExportsWildcard2(t *testing.T) {
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @module: node18
|
|
// @Filename: /node_modules/salesforce-pageobjects/package.json
|
|
{
|
|
"name": "salesforce-pageobjects",
|
|
"version": "1.0.0",
|
|
"exports": {
|
|
"./*": {
|
|
"types": "./dist/*.d.ts",
|
|
"import": "./dist/*.mjs",
|
|
"default": "./dist/*.js"
|
|
}
|
|
}
|
|
}
|
|
// @Filename: /node_modules/salesforce-pageobjects/dist/action/pageObjects/actionRenderer.d.ts
|
|
export const actionRenderer = 0;
|
|
// @Filename: /index.mts
|
|
import { } from "salesforce-pageobjects//**/";`
|
|
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: "action",
|
|
Kind: new(lsproto.CompletionItemKindFolder),
|
|
Detail: new("action"),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
f.Insert(t, "action/")
|
|
f.VerifyCompletions(t, nil, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "pageObjects",
|
|
Kind: new(lsproto.CompletionItemKindFolder),
|
|
Detail: new("pageObjects"),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
f.Insert(t, "pageObjects/")
|
|
f.VerifyCompletions(t, nil, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "actionRenderer",
|
|
Kind: new(lsproto.CompletionItemKindFile),
|
|
Detail: new("actionRenderer.d.ts"),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|