TypeScript/tests/cases/fourslash/completionOfAwaitPromise6.ts

18 lines
316 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts'/>
//// async function foo(x: Promise<string>) {
//// [|x./**/|]
//// }
const replacementSpan = test.ranges()[0]
verify.completions({
marker: "",
exact: [
"then",
"catch"
],
preferences: {
includeInsertTextCompletions: false,
},
});