/// ////async function fn(a: string, b: Promise) { //// const x = b; //// const y = b; //// x + y; ////} verify.codeFix({ description: "Add 'await' to initializers", index: 0, newFileContent: `async function fn(a: string, b: Promise) { const x = await b; const y = await b; x + y; }` }); verify.not.codeFixAllAvailable("addMissingAwait");