We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8343dae commit a2dee55Copy full SHA for a2dee55
1 file changed
test/tests.ts
@@ -17,7 +17,12 @@ async function runPingLoop() {
17
}
18
19
const endTime = Date.now();
20
- console.log('HTTP bin container response time:', endTime - startTime, 'ms');
+ const difference = endTime - startTime;
21
+
22
+ if (difference > 1000) {
23
+ console.log('HTTP bin container response time:', endTime - startTime, 'ms');
24
+ }
25
26
await wait(100);
27
28
0 commit comments