@@ -56,7 +56,7 @@ export default async function globalSetup() {
5656 if ( process . env . CI ) {
5757 throw new Error ( `Browser tests require: ${ missing . join ( ', ' ) } ` ) ;
5858 }
59- console . log ( `\n⏭️ Skipping browser tests — missing: ${ missing . join ( ', ' ) } \n` ) ;
59+ console . log ( `\nSkipping browser tests — missing: ${ missing . join ( ', ' ) } \n` ) ;
6060 process . exit ( 0 ) ;
6161 }
6262
@@ -65,7 +65,7 @@ export default async function globalSetup() {
6565
6666 const projectName = `BrTest${ String ( Date . now ( ) ) . slice ( - 8 ) } ` ;
6767
68- console . log ( `\n📁 Creating test project "${ projectName } " in ${ testDir } ` ) ;
68+ console . log ( `\nCreating test project "${ projectName } " in ${ testDir } ` ) ;
6969
7070 const cleanEnv = { ...process . env } ;
7171 delete cleanEnv . INIT_CWD ;
@@ -90,15 +90,14 @@ export default async function globalSetup() {
9090 const parsed = JSON . parse ( createResult . split ( '\n' ) . pop ( ) ! ) ;
9191 const projectPath : string = resolve ( testDir , parsed . projectPath ) ;
9292
93- console . log ( `✅ Project created at ${ projectPath } ` ) ;
94- console . log ( `🚀 Starting agentcore dev...` ) ;
93+ console . log ( `Project created at ${ projectPath } ` ) ;
94+ console . log ( `Starting agentcore dev...` ) ;
9595
9696 const env = { ...process . env } ;
9797 delete env . INIT_CWD ;
9898 env . AGENTCORE_NO_OPEN = '1' ;
9999 if ( env . AGENT_INSPECTOR_PATH ) {
100100 env . AGENT_INSPECTOR_PATH = resolve ( env . AGENT_INSPECTOR_PATH ) ;
101- console . log ( `🔧 Using custom agent-inspector: ${ env . AGENT_INSPECTOR_PATH } ` ) ;
102101 }
103102
104103 const ptyProcess = pty . spawn ( 'node' , [ CLI_PATH , 'dev' ] , {
@@ -137,7 +136,7 @@ export default async function globalSetup() {
137136 throw new Error ( `Web UI reported port ${ webUIPort } but it is not responding.\nOutput: ${ serverOutput } ` ) ;
138137 }
139138
140- console . log ( `✅ Dev server ready on port ${ webUIPort } ` ) ;
139+ console . log ( `Dev server ready on port ${ webUIPort } ` ) ;
141140
142141 writeFileSync (
143142 ENV_FILE ,
0 commit comments