/// //// interface Foo { foo: string } //// async function foo(x: Promise) { //// [|x./**/|] //// } const replacementSpan = test.ranges()[0] verify.completions({ marker: "", includes: [ "then", { name: "foo", insertText: '(await x).foo', replacementSpan }, ], preferences: { includeInsertTextCompletions: true, }, });