more tests

This commit is contained in:
Arthur Ozga
2018-03-26 16:37:55 -07:00
parent 1ea2a52b69
commit d41070a966
2 changed files with 30 additions and 3 deletions

View File

@@ -5,7 +5,9 @@
//// {
//// outerKey:
//// {
//// innerKey: 1
//// innerKey: 1,
//// innerKey2:
//// 2
//// }
//// };
////
@@ -17,8 +19,10 @@ var clear =
{
outerKey:
{
innerKey: 1
innerKey: 1,
innerKey2:
2
}
};
`
);
);

View File

@@ -0,0 +1,23 @@
/// <reference path='fourslash.ts' />
////
//// let obj1 =
//// { x: 10 };
////
//// let obj2 =
//// // leading trivia
//// { y: 10 };
////
format.document();
verify.currentFileContentIs(
`
let obj1 =
{ x: 10 };
let obj2 =
// leading trivia
{ y: 10 };
`
);