diff options
author | Amanpreet Singh <apsdehal@gmail.com> | 2016-04-03 21:40:09 +0530 |
---|---|---|
committer | Amanpreet Singh <apsdehal@gmail.com> | 2016-04-14 00:06:12 +0530 |
commit | 86fd11d5a73c1500d0efef07653f69c0e58e2db3 (patch) | |
tree | 23170d66901fda310296fe047dba86d3a414441c /tests/unit/dialog/helper.js | |
parent | e8e886770757bc21ddb1151fbbd956c031a8e2c4 (diff) | |
download | jquery-ui-86fd11d5a73c1500d0efef07653f69c0e58e2db3.tar.gz jquery-ui-86fd11d5a73c1500d0efef07653f69c0e58e2db3.zip |
Dialog: Shift to use no globals
Diffstat (limited to 'tests/unit/dialog/helper.js')
-rw-r--r-- | tests/unit/dialog/helper.js | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/unit/dialog/helper.js b/tests/unit/dialog/helper.js index 9db5b5613..04c23202e 100644 --- a/tests/unit/dialog/helper.js +++ b/tests/unit/dialog/helper.js @@ -1,21 +1,22 @@ define( [ + "qunit", "jquery", "lib/helper", "ui/widgets/dialog" -], function( $, helper ) { +], function( QUnit, $, helper ) { return $.extend( helper, { drag: function( element, handle, dx, dy ) { var d = element.dialog( "widget" ); - //this mouseover is to work around a limitation in resizable + //This mouseover is to work around a limitation in resizable //TODO: fix resizable so handle doesn't require mouseover in order to be used $( handle, d ).simulate( "mouseover" ).simulate( "drag", { dx: dx, dy: dy } ); }, - testDrag: function( element, dx, dy, expectedDX, expectedDY, msg ) { + testDrag: function( assert, element, dx, dy, expectedDX, expectedDY, msg ) { var actualDX, actualDY, offsetAfter, d = element.dialog( "widget" ), handle = $( ".ui-dialog-titlebar", d ), @@ -29,13 +30,13 @@ return $.extend( helper, { actualDX = offsetAfter.left - offsetBefore.left; actualDY = offsetAfter.top - offsetBefore.top; - ok( expectedDX - actualDX <= 1 && expectedDY - actualDY <= 1, "dragged[" + expectedDX + ", " + expectedDY + "] " + msg ); + assert.ok( expectedDX - actualDX <= 1 && expectedDY - actualDY <= 1, "dragged[" + expectedDX + ", " + expectedDY + "] " + msg ); }, // TODO switch back to checking the size of the .ui-dialog element (var d) // once we switch to using box-sizing: border-box (#9845) that should work fine // using the element's dimensions to avoid subpixel errors - shouldResize: function( element, dw, dh, msg ) { + shouldResize: function( assert, element, dw, dh, msg ) { var heightAfter, widthAfter, actual, expected, d = element.dialog( "widget" ), handle = $( ".ui-resizable-se", d ), @@ -50,7 +51,7 @@ return $.extend( helper, { msg = msg ? msg + "." : ""; actual = { width: widthAfter, height: heightAfter }, expected = { width: widthBefore + dw, height: heightBefore + dh }; - deepEqual( actual, expected, "resized[" + 50 + ", " + 50 + "] " + msg ); + assert.deepEqual( actual, expected, "resized[" + 50 + ", " + 50 + "] " + msg ); } } ); |