From: Robert Konigsberg Date: Sun, 15 Sep 2013 04:42:17 +0000 (-0400) Subject: Add method to auto tests' proxy to clear the call list for better testing. X-Git-Tag: v1.1.0~82^2~4 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=d57dd6f2d72c2cf8aa342746076246effd10c8e3;p=dygraphs.git Add method to auto tests' proxy to clear the call list for better testing. --- diff --git a/auto_tests/tests/Proxy.js b/auto_tests/tests/Proxy.js index 852009e..9ffc385 100644 --- a/auto_tests/tests/Proxy.js +++ b/auto_tests/tests/Proxy.js @@ -71,3 +71,7 @@ Proxy.prototype.log__ = function(name, args) { var call = { name : name, args : args, properties: properties }; this.calls__.push(call); }; + +Proxy.reset = function(proxy) { + proxy.calls__ = []; +}