File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
apps/framework-cli-e2e/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,13 +72,13 @@ async function checkLatestPublishedCLI(): Promise<void> {
7272 console . log ( "npm install output:" , installResult . stdout ) ;
7373
7474 // Find the installed CLI binary
75- const { stdout : cliPath } = await execAsync (
76- "npm bin --no-save" ,
77- ) ;
75+ const { stdout : cliPath } = await execAsync ( "npm bin --no-save" ) ;
7876 LATEST_CLI_PATH = path . join ( cliPath . trim ( ) , "moose-cli" ) ;
7977
8078 // Verify it works
81- const { stdout : version } = await execAsync ( `"${ LATEST_CLI_PATH } " --version` ) ;
79+ const { stdout : version } = await execAsync (
80+ `"${ LATEST_CLI_PATH } " --version` ,
81+ ) ;
8282 console . log ( "Latest published CLI version:" , version . trim ( ) ) ;
8383 } catch ( error : any ) {
8484 console . error ( "Failed to install latest CLI from npm:" , error . message ) ;
You can’t perform that action at this time.
0 commit comments