38 lines
1.2 KiB
Go
38 lines
1.2 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual autoImportPnpm"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestAutoImportPnpm(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: /tsconfig.json
|
|
{ "compilerOptions": { "module": "commonjs" } }
|
|
// @Filename: /node_modules/.pnpm/mobx@6.0.4/node_modules/mobx/package.json
|
|
{ "types": "dist/mobx.d.ts" }
|
|
// @Filename: /node_modules/.pnpm/mobx@6.0.4/node_modules/mobx/dist/mobx.d.ts
|
|
export declare function autorun(): void;
|
|
// @Filename: /index.ts
|
|
autorun/**/
|
|
// @Filename: /utils.ts
|
|
import "mobx";
|
|
// @link: /node_modules/.pnpm/mobx@6.0.4/node_modules/mobx -> /node_modules/mobx
|
|
// @link: /node_modules/.pnpm/mobx@6.0.4/node_modules/mobx -> /node_modules/.pnpm/cool-mobx-dependent@1.2.3/node_modules/mobx`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToMarker(t, "")
|
|
f.VerifyImportFixAtPosition(t, []string{
|
|
`import { autorun } from "mobx";
|
|
|
|
autorun`,
|
|
}, nil /*preferences*/)
|
|
}
|