vendor tsgo
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
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 TestPathCompletionsPackageJsonImportsWildcard2(t *testing.T) {
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `// @module: node18
|
||||
// @Filename: /package.json
|
||||
{
|
||||
"name": "salesforce-pageobjects",
|
||||
"version": "1.0.0",
|
||||
"imports": {
|
||||
"#*": {
|
||||
"types": "./dist/*.d.ts",
|
||||
"import": "./dist/*.mjs",
|
||||
"default": "./dist/*.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
// @Filename: /dist/action/pageObjects/actionRenderer.d.ts
|
||||
export const actionRenderer = 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{
|
||||
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"),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user