58 lines
1.6 KiB
Go
58 lines
1.6 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual pathCompletionsPackageJsonImportsOnlyFromClosestScope1"
|
|
|
|
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/testutil"
|
|
)
|
|
|
|
func TestPathCompletionsPackageJsonImportsOnlyFromClosestScope1(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @module: node18
|
|
// @Filename: /package.json
|
|
{
|
|
"imports": {
|
|
"#thing": "./src/something.ts"
|
|
}
|
|
}
|
|
// @Filename: /src/package.json
|
|
{}
|
|
// @Filename: /src/something.ts
|
|
export function something(name: string): any;
|
|
// @Filename: /src/a.ts
|
|
import {} from "/*1*/";
|
|
// @Filename: /a.ts
|
|
import {} from "/*2*/";`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyCompletions(t, []string{"1"}, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{},
|
|
},
|
|
})
|
|
f.VerifyCompletions(t, []string{"2"}, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
"#thing",
|
|
},
|
|
},
|
|
})
|
|
}
|