TypeScript/tests/cases/fourslash/jsxQualifiedTagCompletion.ts
Andy 7a79a45aab
JSX closing tag completion: Include '>' if not already present (#25551)
* JSX closing tag completion: Include '>' if not already present

* Expand comment
2018-07-10 16:14:57 -07:00

14 lines
286 B
TypeScript

/// <reference path="fourslash.ts" />
//@Filename: file.tsx
//// declare var React: any;
//// namespace NS {
//// export var Foo: any = null;
//// }
//// const j = <NS.Foo>Hello!/**/
////
goTo.marker();
edit.insert("</");
verify.completions({ exact: "NS.Foo>" });