TypeScript/tests/cases/fourslash/formatRemoveNewLineAfterOpenBrace.ts
2017-06-20 11:52:05 -07:00

16 lines
187 B
TypeScript

/// <reference path="fourslash.ts"/>
//// function foo()
//// {
//// }
//// if (true)
//// {
//// }
format.document();
verify.currentFileContentIs(
`function foo() {
}
if (true) {
}`);