36 lines
924 B
Go
36 lines
924 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual completionsImportYieldExpression"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestCompletionsImportYieldExpression(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: /a.ts
|
|
export function a() {}
|
|
// @Filename: /b.ts
|
|
function *f() {
|
|
yield a/**/
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyApplyCodeActionFromCompletion(t, new(""), &fourslash.ApplyCodeActionFromCompletionOptions{
|
|
Name: "a",
|
|
Source: "./a",
|
|
Description: "Add import from \"./a\"",
|
|
NewFileContent: new(`import { a } from "./a";
|
|
|
|
function *f() {
|
|
yield a
|
|
}`),
|
|
})
|
|
}
|