X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fno_hours.js;h=bcfc1feb956834f1f87ca50fa57241dbcf164a1f;hb=f160e4ac8166f74d1f0e5604061564fbca5ba5a5;hp=1fde9ef24f92d43bdf8b3210bb3ce562c66e62ce;hpb=20bb4e9d1e3da5bedaee7584a9e91aefd9e3a6d4;p=dygraphs.git diff --git a/auto_tests/tests/no_hours.js b/auto_tests/tests/no_hours.js index 1fde9ef..bcfc1fe 100644 --- a/auto_tests/tests/no_hours.js +++ b/auto_tests/tests/no_hours.js @@ -5,16 +5,15 @@ * * @author danvk@google.com (Dan Vanderkam) */ -var noHoursTestCase = TestCase("no-hours"); -noHoursTestCase.prototype.setUp = function() { - document.body.innerHTML = "
"; -}; +import Dygraph from '../../src/dygraph'; +import Util from './Util'; -noHoursTestCase.prototype.tearDown = function() { -}; +describe("no-hours", function() { -noHoursTestCase.prototype.testNoHours = function() { +cleanupAfterEach(); + +it('testNoHours', function() { var opts = { width: 480, height: 320 @@ -30,19 +29,19 @@ noHoursTestCase.prototype.testNoHours = function() { var g = new Dygraph(graph, data, opts); g.setSelection(0); - assertEquals("2012/03/13: Y: -1", Util.getLegend()); + assert.equal("2012/03/13: Y: -1", Util.getLegend()); g.setSelection(1); - assertEquals("2012/03/14: Y: 0", Util.getLegend()); + assert.equal("2012/03/14: Y: 0", Util.getLegend()); g.setSelection(2); - assertEquals("2012/03/15: Y: 1", Util.getLegend()); + assert.equal("2012/03/15: Y: 1", Util.getLegend()); g.setSelection(3); - assertEquals("2012/03/16: Y: 0", Util.getLegend()); -}; + assert.equal("2012/03/16: Y: 0", Util.getLegend()); +}); -noHoursTestCase.prototype.testNoHoursDashed = function() { +it('testNoHoursDashed', function() { var opts = { width: 480, height: 320 @@ -58,15 +57,17 @@ noHoursTestCase.prototype.testNoHoursDashed = function() { var g = new Dygraph(graph, data, opts); g.setSelection(0); - assertEquals("2012/03/13: Y: -1", Util.getLegend()); + assert.equal("2012/03/13: Y: -1", Util.getLegend()); g.setSelection(1); - assertEquals("2012/03/14: Y: 0", Util.getLegend()); + assert.equal("2012/03/14: Y: 0", Util.getLegend()); g.setSelection(2); - assertEquals("2012/03/15: Y: 1", Util.getLegend()); + assert.equal("2012/03/15: Y: 1", Util.getLegend()); g.setSelection(3); - assertEquals("2012/03/16: Y: 0", Util.getLegend()); -}; + assert.equal("2012/03/16: Y: 0", Util.getLegend()); +}); + +});