TypeScript/tests/cases/fourslash/codeFixAddVoidToPromiseJS.5.ts
Ron Buckton dba042d7d5
Add quick fix to add 'void' to Promise resolved without value (#40558)
* Add codefix to add 'void' to Promise resolved without value

* Add specific error message in checker to reduce quick-fix time in editor
2020-09-14 19:12:33 -07:00

13 lines
326 B
TypeScript

/// <reference path='fourslash.ts' />
// @target: esnext
// @lib: es2015
// @strict: true
// @allowJS: true
// @checkJS: true
// @filename: main.js
/////** @type {Promise<number>} */
////const p2 = new Promise(resolve => resolve());
verify.not.codeFixAvailable("Add 'void' to Promise resolved without a value");