X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fhidpi.js;fp=auto_tests%2Ftests%2Fhidpi.js;h=cdf0ee4809a4fe37a4650916673b16d32c1afd58;hb=3123ca57f71d145bb5bcc4a2f754d3dff3225346;hp=c595065fb58d5b8064e9a6ca4459dad3a86afaa0;hpb=26ee953643ccd2d32e38e6b60b20e6a01c1dc9ba;p=dygraphs.git diff --git a/auto_tests/tests/hidpi.js b/auto_tests/tests/hidpi.js index c595065..cdf0ee4 100644 --- a/auto_tests/tests/hidpi.js +++ b/auto_tests/tests/hidpi.js @@ -3,21 +3,21 @@ * * @author danvdk@gmail.com (Dan Vanderkam) */ -var hidpiTestCase = TestCase("hidpi"); +describe("hidpi", function() { var savePixelRatio; -hidpiTestCase.prototype.setUp = function() { +beforeEach(function() { savePixelRatio = window.devicePixelRatio; window.devicePixelRatio = 2; document.body.innerHTML = "
"; -}; +}); -hidpiTestCase.prototype.tearDown = function() { +afterEach(function() { window.devicePixelRatio = savePixelRatio; -}; +}); -hidpiTestCase.prototype.testDoesntCreateScrollbars = function() { +it('testDoesntCreateScrollbars', function() { var sw = document.body.scrollWidth; var cw = document.body.clientWidth; @@ -38,7 +38,9 @@ hidpiTestCase.prototype.testDoesntCreateScrollbars = function() { // Adding the graph shouldn't cause the width of the page to change. // (essentially, we're checking that we don't end up with a scrollbar) // See http://stackoverflow.com/a/2146905/388951 - assertEquals(cw, document.body.clientWidth); - assertEquals(sw, document.body.scrollWidth); -}; + assert.equal(cw, document.body.clientWidth); + assert.equal(sw, document.body.scrollWidth); +}); + +});