From b56f033a91375ca94c22c1623e797fdbea2686fe Mon Sep 17 00:00:00 2001 From: Kyle Baggott Date: Tue, 15 Sep 2015 14:06:03 +0100 Subject: [PATCH] making comments nicer --- auto_tests/tests/interaction_model.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auto_tests/tests/interaction_model.js b/auto_tests/tests/interaction_model.js index dc7105e..3d6e3d0 100644 --- a/auto_tests/tests/interaction_model.js +++ b/auto_tests/tests/interaction_model.js @@ -457,6 +457,8 @@ describe('animated zooms', function() { }); +//bulk copied from "testCorrectAxisValueRangeAfterUnzoom" +//tests if the xRangePad is taken into account after unzoom. it('testCorrectAxisPaddingAfterUnzoom', function() { var g = new Dygraph(document.getElementById("graph"), data2, { @@ -494,9 +496,7 @@ it('testCorrectAxisPaddingAfterUnzoom', function() { DygraphOps.dispatchMouseUp_Point(g, 10, 10); DygraphOps.dispatchDoubleClick(g, null); - // check if range for y-axis was reset to original value - // TODO check if range for x-axis is correct. - // Currently not possible because dateRange is set to null and extremes are returned + // check if range for x-axis was reset to original value var newXAxisRange = g.xAxisRange(); assert.equal(extremes[0], newXAxisRange[0]); assert.equal(extremes[1], newXAxisRange[1]); -- 2.7.4