@@ -82,8 +82,8 @@ describe("Timeout Handling During Notifications", () => {
82
82
"Command Timeout error should be instanceof Error"
83
83
) ;
84
84
assert . ok (
85
- duration > NORMAL_COMMAND_TIMEOUT &&
86
- duration < NORMAL_COMMAND_TIMEOUT * 1.1 ,
85
+ duration >= NORMAL_COMMAND_TIMEOUT &&
86
+ duration < NORMAL_COMMAND_TIMEOUT * 1.2 ,
87
87
`Normal command should timeout within normal timeout ms`
88
88
) ;
89
89
assert . strictEqual (
@@ -128,8 +128,8 @@ describe("Timeout Handling During Notifications", () => {
128
128
`${ notification } notification error should be instanceof Error`
129
129
) ;
130
130
assert . ok (
131
- result [ notification ] ?. duration > RELAXED_COMMAND_TIMEOUT &&
132
- result [ notification ] ?. duration < RELAXED_COMMAND_TIMEOUT * 1.1 ,
131
+ result [ notification ] ?. duration >= RELAXED_COMMAND_TIMEOUT &&
132
+ result [ notification ] ?. duration < RELAXED_COMMAND_TIMEOUT * 1.2 ,
133
133
`${ notification } notification should timeout within relaxed timeout`
134
134
) ;
135
135
assert . strictEqual (
@@ -165,7 +165,7 @@ describe("Timeout Handling During Notifications", () => {
165
165
) ;
166
166
assert . ok (
167
167
durationMigrate >= NORMAL_COMMAND_TIMEOUT &&
168
- durationMigrate < NORMAL_COMMAND_TIMEOUT * 1.1 ,
168
+ durationMigrate < NORMAL_COMMAND_TIMEOUT * 1.2 ,
169
169
`Normal command should timeout within normal timeout ms`
170
170
) ;
171
171
assert . strictEqual (
@@ -200,7 +200,7 @@ describe("Timeout Handling During Notifications", () => {
200
200
) ;
201
201
assert . ok (
202
202
durationBind >= NORMAL_COMMAND_TIMEOUT &&
203
- durationBind < NORMAL_COMMAND_TIMEOUT * 1.1 ,
203
+ durationBind < NORMAL_COMMAND_TIMEOUT * 1.2 ,
204
204
`Normal command should timeout within normal timeout ms`
205
205
) ;
206
206
assert . strictEqual (
0 commit comments