@@ -338,8 +338,8 @@ describe('ThemeCommand', () => {
338338 test ( 'confirmation prompts should display correctly formatted flag values' , async ( ) => {
339339 // Given
340340 vi . mocked ( loadEnvironment )
341- . mockResolvedValueOnce ( { store : 'store1.myshopify.com' , password : 'password1' , path : 'a/ path/to/a-theme ' } )
342- . mockResolvedValueOnce ( { store : 'store2.myshopify.com' , password : 'password2' , path : 'a/ path/to/another-theme ' } )
341+ . mockResolvedValueOnce ( { store : 'store1.myshopify.com' , password : 'password1' , path : '/home/ path/to/theme1 ' } )
342+ . mockResolvedValueOnce ( { store : 'store2.myshopify.com' , password : 'password2' , path : '/home/ path/to/theme2 ' } )
343343
344344 await CommandConfig . load ( )
345345 const command = new TestThemeCommandWithPathFlag (
@@ -357,8 +357,8 @@ describe('ThemeCommand', () => {
357357 message : [ 'Run testthemecommandwithpathflag in the following environments?' ] ,
358358 infoTable : {
359359 Environment : [
360- [ 'development' , { subdued : 'store: store1.myshopify.com, password, path: .../a-theme ' } ] ,
361- [ 'staging' , { subdued : 'store: store2.myshopify.com, password, path: .../another-theme ' } ] ,
360+ [ 'development' , { subdued : 'store: store1.myshopify.com, password, path: /home/ .../theme1 ' } ] ,
361+ [ 'staging' , { subdued : 'store: store2.myshopify.com, password, path: /home/ .../theme2 ' } ] ,
362362 ] ,
363363 } ,
364364 confirmationMessage : 'Yes, proceed' ,
0 commit comments