TypeScript/tests/cases/fourslash/indentationInJsx3.ts
2017-10-31 16:10:17 -07:00

35 lines
481 B
TypeScript

/// <reference path='fourslash.ts' />
//@Filename: file.tsx
////function foo() {
//// return (
//// <div>
////hello
////goodbye
//// </div>
//// )
////}
verify.currentFileContentIs(
`function foo() {
return (
<div>
hello
goodbye
</div>
)
}`
);
format.document();
verify.currentFileContentIs(
`function foo() {
return (
<div>
hello
goodbye
</div>
)
}`
);