@@ -82,10 +82,7 @@ function tmux(args: string[]): Promise<string> {
8282 * Send input to the CLI using bracketed paste mode.
8383 * Standard send-keys doesn't work with OpenTUI - see tmux.knowledge.md
8484 */
85- async function sendCliInput (
86- sessionName : string ,
87- text : string ,
88- ) : Promise < void > {
85+ async function sendCliInput ( sessionName : string , text : string ) : Promise < void > {
8986 await tmux ( [
9087 'send-keys' ,
9188 '-t' ,
@@ -115,7 +112,7 @@ describe.skipIf(!tmuxAvailable || !sdkBuilt)(
115112 // Propagate environment into tmux server
116113 await Promise . all (
117114 entries . map ( ( [ key , value ] ) =>
118- tmux ( [ 'set-environment' , '-g' , key , value ] ) . catch ( ( ) => { } ) ,
115+ tmux ( [ 'set-environment' , '-g' , key , value ] ) ,
119116 ) ,
120117 )
121118 // Enable performance testing
@@ -162,10 +159,10 @@ describe.skipIf(!tmuxAvailable || !sdkBuilt)(
162159 // Log analysis for debugging
163160 console . log ( '\n📊 Re-render Analysis:' )
164161 console . log ( ` Total re-renders: ${ analysis . totalRerenders } ` )
162+ console . log ( ` Max per message: ${ analysis . maxRerenderPerMessage } ` )
165163 console . log (
166- ` Max per message : ${ analysis . maxRerenderPerMessage } ` ,
164+ ` Messages tracked : ${ analysis . rerendersByMessage . size } ` ,
167165 )
168- console . log ( ` Messages tracked: ${ analysis . rerendersByMessage . size } ` )
169166 if ( analysis . propChangeFrequency . size > 0 ) {
170167 console . log ( ' Prop change frequency:' )
171168 for ( const [ prop , count ] of analysis . propChangeFrequency ) {
0 commit comments