kittenipc/kitcom/internal/tsgo/fourslash/tests/gen/pathCompletionsAllowModuleAugmentationExtensions_test.go
2025-10-15 10:12:44 +03:00

35 lines
988 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
. "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash/tests/util"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestPathCompletionsAllowModuleAugmentationExtensions(t *testing.T) {
t.Parallel()
t.Skip()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @Filename: /project/foo.css
export const foo = 0;
// @Filename: declarations.d.ts
declare module "*.css" {}
// @Filename: /project/main.ts
import {} from ".//**/"`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
IsIncomplete: false,
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
CommitCharacters: &[]string{},
EditRange: Ignored,
},
Items: &fourslash.CompletionsExpectedItems{
Exact: []fourslash.CompletionsExpectedItem{
"foo.css",
},
},
})
}