X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fsimple_drawing.js;h=ca1930191360a6f9450990c81806d6d272338e08;hb=107c99e4ecbdfcf0b939fd385b1a34a3ba56d978;hp=71f2fc1609b7c026b9e8728a8e8cc76d703bb16e;hpb=01ebcbd470fbe8a6652195927c6585d4c854575b;p=dygraphs.git diff --git a/auto_tests/tests/simple_drawing.js b/auto_tests/tests/simple_drawing.js index 71f2fc1..ca19301 100644 --- a/auto_tests/tests/simple_drawing.js +++ b/auto_tests/tests/simple_drawing.js @@ -30,9 +30,9 @@ var SimpleDrawingTestCase = TestCase("simple-drawing"); var _origFunc = Dygraph.getContext; SimpleDrawingTestCase.prototype.setUp = function() { document.body.innerHTML = "
"; - // Dygraph.getContext = function(canvas) { - // return new Proxy(_origFunc(canvas)); - // } + Dygraph.getContext = function(canvas) { + return new Proxy(_origFunc(canvas)); + } }; SimpleDrawingTestCase.prototype.tearDown = function() { @@ -49,10 +49,10 @@ SimpleDrawingTestCase.prototype.testDrawSimpleRangePlusOne = function() { var graph = document.getElementById("graph"); var g = new Dygraph(graph, ZERO_TO_FIFTY, opts); - // var htx = g.hidden_ctx_; + htx = g.hidden_ctx_; - // CanvasAssertions.assertLineDrawn(htx, [56,300], [475,5.8], { - // strokeStyle: "#008080", - // lineWidth: 1 - // }); + CanvasAssertions.assertLineDrawn(htx, [0,320], [475,6.2745], { + strokeStyle: "#008080", + lineWidth: 1 + }); }