@@ -128,7 +128,7 @@ describe('astro cli', () => {
128128 assert . equal ( proc . stdout . includes ( `v${ viteVersion } ` ) , true ) ;
129129 assert . equal ( proc . stdout . includes ( `@astrojs/node (v${ adapterVersion } )` ) , true ) ;
130130 assert . equal ( proc . stdout . includes ( `@astrojs/react (v${ integrationVersion } )` ) , true ) ;
131- }
131+ } ,
132132 ) ;
133133
134134 it (
@@ -155,7 +155,7 @@ describe('astro cli', () => {
155155 assert . equal ( proc . stdout . includes ( `v${ viteVersion } ` ) , true ) ;
156156 assert . equal ( proc . stdout . includes ( `@astrojs/node (v${ adapterVersion } )` ) , true ) ;
157157 assert . equal ( proc . stdout . includes ( `@astrojs/react (v${ integrationVersion } )` ) , true ) ;
158- }
158+ } ,
159159 ) ;
160160
161161 it (
@@ -217,7 +217,9 @@ describe('astro cli', () => {
217217 delete packageJSON . packageManager ;
218218 packageJSON . dependencies . astro = 'workspace:*' ;
219219
220- await fs . writeFile ( packageJSONUrl , JSON . stringify ( packageJSON , null , 2 ) , { encoding : 'utf-8' } ) ;
220+ await fs . writeFile ( packageJSONUrl , JSON . stringify ( packageJSON , null , 2 ) , {
221+ encoding : 'utf-8' ,
222+ } ) ;
221223 await fs . rm ( yarnLockUrl , { force : true } ) ;
222224 await fs . rm ( packDestinationURL , { force : true } ) ;
223225
@@ -226,7 +228,7 @@ describe('astro cli', () => {
226228 assert . equal ( proc . stdout . includes ( `v${ viteVersion } ` ) , true ) ;
227229 assert . equal ( proc . stdout . includes ( `@astrojs/node (v${ adapterVersion } )` ) , true ) ;
228230 assert . equal ( proc . stdout . includes ( `@astrojs/react (v${ integrationVersion } )` ) , true ) ;
229- }
231+ } ,
230232 ) ;
231233
232234 it (
0 commit comments