/// ////const f: () => Promise = () => { //// await Promise.resolve('foo'); ////} verify.codeFix({ index: 2, description: "Add async modifier to containing function", newFileContent: `const f: () => Promise = async () => { await Promise.resolve('foo'); }`, });