@@ -74,7 +74,7 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
74
74
let sessions = await connectionPage . getSessions ( )
75
75
assert . equal ( 1 , sessions . sessions . length )
76
76
let session = connectionPage . getSessionInfo ( sessions . sessions , 0 )
77
- console . log ( "session: " + JSON . stringify ( session ) )
77
+ // console.log("session: " + JSON.stringify(session))
78
78
assert . equal ( 0 , session . channelNumber )
79
79
assert . equal ( 1 , session . nextIncomingId )
80
80
assert . equal ( 0 , session . outgoingUnsettledDeliveries )
@@ -86,7 +86,7 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
86
86
assert . equal ( 1 , sessions . outgoing_links . length )
87
87
88
88
let incomingLink = connectionPage . getIncomingLinkInfo ( sessions . incoming_links , 0 )
89
- console . log ( "incomingLink: " + JSON . stringify ( incomingLink ) )
89
+ // console.log("incomingLink: " + JSON.stringify(incomingLink))
90
90
assert . equal ( 1 , incomingLink . handle )
91
91
assert . equal ( "sender-link" , incomingLink . name )
92
92
assert . equal ( "examples" , incomingLink . targetAddress )
@@ -95,7 +95,7 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
95
95
assert . equal ( 1 , incomingLink . deliveryCount )
96
96
97
97
let outgoingLink = connectionPage . getOutgoingLinkInfo ( sessions . outgoing_links , 0 )
98
- console . log ( "outgoingLink: " + JSON . stringify ( outgoingLink ) )
98
+ // console.log("outgoingLink: " + JSON.stringify(outgoingLink))
99
99
assert . equal ( 0 , outgoingLink . handle )
100
100
assert . equal ( "receiver-link" , outgoingLink . name )
101
101
assert . equal ( "examples" , outgoingLink . sourceAddress )
@@ -118,9 +118,7 @@ describe('Given an amqp10 connection opened, listed and clicked on it', function
118
118
119
119
await delay ( 5 * 1000 ) // wait until page refreshes
120
120
let sessions = await connectionPage . getSessions ( )
121
- let session = connectionPage . getSessionInfo ( sessions . sessions , 0 )
122
121
let incomingLink = connectionPage . getIncomingLinkInfo ( sessions . incoming_links , 0 )
123
- let outgoingLink = connectionPage . getOutgoingLinkInfo ( sessions . outgoing_links , 0 )
124
122
assert . equal ( 2 , incomingLink . deliveryCount )
125
123
126
124
//console.log("incomingLink: " + JSON.stringify(incomingLink))
0 commit comments