X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fno_hours.js;h=323c84e838a568003f1cf2e1f0d2f4c00f62baf3;hb=bf50de0db3094fc5155efc8aee14112df2545e42;hp=1fde9ef24f92d43bdf8b3210bb3ce562c66e62ce;hpb=79aabc9d405aa83072ffea1734125e9faed192c1;p=dygraphs.git diff --git a/auto_tests/tests/no_hours.js b/auto_tests/tests/no_hours.js index 1fde9ef..323c84e 100644 --- a/auto_tests/tests/no_hours.js +++ b/auto_tests/tests/no_hours.js @@ -5,16 +5,16 @@ * * @author danvk@google.com (Dan Vanderkam) */ -var noHoursTestCase = TestCase("no-hours"); +describe("no-hours", function() { -noHoursTestCase.prototype.setUp = function() { +beforeEach(function() { document.body.innerHTML = "
"; -}; +}); -noHoursTestCase.prototype.tearDown = function() { -}; +afterEach(function() { +}); -noHoursTestCase.prototype.testNoHours = function() { +it('testNoHours', function() { var opts = { width: 480, height: 320 @@ -30,19 +30,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 +58,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()); +}); + +});