/// ////interface Stuff { //// b: () => Promise; ////} //// ////function foo(): Stuff | Date { //// return { //// b: _ => "hello", //// } ////} verify.codeFix({ description: ts.Diagnostics.Add_async_modifier_to_containing_function.message, index: 0, newFileContent: `interface Stuff { b: () => Promise; } function foo(): Stuff | Date { return { b: async (_) => "hello", } }` });