package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestAutoImportQuoteDetection(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// @module: esnext // @Filename: /a.ts export const foo = 0; // @Filename: /b.ts import {} from 'node:path'; fo/**/` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.GoToMarker(t, "") f.VerifyApplyCodeActionFromCompletion(t, new(""), &fourslash.ApplyCodeActionFromCompletionOptions{ Name: "foo", Source: "./a", Description: "Add import from \"./a\"", NewFileContent: new(`import {} from 'node:path'; import { foo } from './a'; fo`), }) }