TypeScript/tests/cases/fourslash/formatRemoveNewLineAfterOpenBrace.ts

16 lines
187 B
TypeScript
Raw Normal View History

2017-06-20 05:30:11 +02:00
/// <reference path="fourslash.ts"/>
//// function foo()
//// {
//// }
//// if (true)
//// {
//// }
format.document();
verify.currentFileContentIs(
`function foo() {
}
if (true) {
}`);