@@ -5,7 +5,7 @@ describe("Class Body", () => {
55 expectSnippetToBeFormatted ( {
66 snippet : "{ }" ,
77 expectedOutput : "{}" ,
8- entryPoint : "classBody"
8+ entryPoint : "classBody" ,
99 } ) ;
1010 } ) ;
1111
@@ -19,7 +19,7 @@ describe("Class Body", () => {
1919 expectSnippetToBeFormatted ( {
2020 snippet : "{int i;}" ,
2121 expectedOutput,
22- entryPoint : "classBody"
22+ entryPoint : "classBody" ,
2323 } ) ;
2424 } ) ;
2525
@@ -45,7 +45,7 @@ describe("Class Body", () => {
4545 expectSnippetToBeFormatted ( {
4646 snippet,
4747 expectedOutput,
48- entryPoint : "classBody"
48+ entryPoint : "classBody" ,
4949 } ) ;
5050 } ) ;
5151
@@ -71,7 +71,7 @@ describe("Class Body", () => {
7171 expectSnippetToBeFormatted ( {
7272 snippet,
7373 expectedOutput,
74- entryPoint : "classBody"
74+ entryPoint : "classBody" ,
7575 } ) ;
7676 } ) ;
7777
@@ -101,7 +101,7 @@ describe("Class Body", () => {
101101 expectSnippetToBeFormatted ( {
102102 snippet,
103103 expectedOutput,
104- entryPoint : "classBody"
104+ entryPoint : "classBody" ,
105105 } ) ;
106106 } ) ;
107107
@@ -110,7 +110,7 @@ describe("Class Body", () => {
110110 expectSnippetToBeFormatted ( {
111111 snippet : "{;;}" ,
112112 expectedOutput : "{}" ,
113- entryPoint : "classBody"
113+ entryPoint : "classBody" ,
114114 } ) ;
115115 } ) ;
116116
@@ -139,7 +139,7 @@ describe("Class Body", () => {
139139 expectSnippetToBeFormatted ( {
140140 snippet,
141141 expectedOutput,
142- entryPoint : "classBody"
142+ entryPoint : "classBody" ,
143143 } ) ;
144144 } ) ;
145145
@@ -170,15 +170,15 @@ describe("Class Body", () => {
170170 expectSnippetToBeFormatted ( {
171171 snippet,
172172 expectedOutput,
173- entryPoint : "classBody"
173+ entryPoint : "classBody" ,
174174 } ) ;
175175 } ) ;
176176
177177 it ( "should print comments attached to empty statement where only empty statements" , ( ) => {
178178 expectSnippetToBeFormatted ( {
179179 snippet : "{;/* TODO */;}" ,
180180 expectedOutput : "{\n" + " /* TODO */\n" + "}" ,
181- entryPoint : "classBody"
181+ entryPoint : "classBody" ,
182182 } ) ;
183183 } ) ;
184184
@@ -208,7 +208,7 @@ describe("Class Body", () => {
208208 expectSnippetToBeFormatted ( {
209209 snippet,
210210 expectedOutput,
211- entryPoint : "classBody"
211+ entryPoint : "classBody" ,
212212 } ) ;
213213 } ) ;
214214 } ) ;
0 commit comments