You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it("shouldn't send telemetry if error should be skipped",()=>{
92
101
telemetryChannel.append(
93
102
"[Error - 15:10:33] (node:25052) Warning: Setting the NODE_TLS_REJECT_UNAUTHORIZED environment variable to '0' makes TLS connections and HTTPS requests insecure by disabling certificate verification."
94
103
);
104
+
clock.tick(51);
95
105
expect(telemetry.send).not.called;
96
106
});
107
+
108
+
it('should throttle send telemetry if "append" called multiple times',()=>{
0 commit comments