TypeScript/tests/cases/fourslash/codeFixAddMissingAwait_initializer4.ts

20 lines
406 B
TypeScript
Raw Normal View History

/// <reference path="fourslash.ts" />
////async function fn(a: string, b: Promise<string>) {
//// 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<string>) {
const x = await b;
const y = await b;
x + y;
}`
});
verify.not.codeFixAllAvailable("addMissingAwait");