TypeScript/tests/cases/fourslash/formatTsxClosingAfterJsxText.ts

32 lines
408 B
TypeScript
Raw Normal View History

/// <reference path="fourslash.ts"/>
// @Filename: foo.tsx
////
////const a = (
//// <div>
//// text
//// </div>
////)
////const b = (
//// <div>
//// text
//// twice
//// </div>
////)
////
format.document();
verify.currentFileContentIs(`
const a = (
<div>
text
</div>
)
const b = (
<div>
text
twice
</div>
)
`);