aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/testsuite.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/testsuite.js')
-rw-r--r--tests/unit/testsuite.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/unit/testsuite.js b/tests/unit/testsuite.js
index 83d69d2d9..13daa7e66 100644
--- a/tests/unit/testsuite.js
+++ b/tests/unit/testsuite.js
@@ -191,6 +191,13 @@ TestHelpers.onFocus= function( element, onFocus ) {
element.bind( "focus", fn )[ 0 ].focus();
};
+TestHelpers.forceScrollableWindow = function( appendTo ) {
+ return $( "<div>" ).css({
+ height: "10000px",
+ width: "10000px"
+ }).appendTo( appendTo || "#qunit-fixture" );
+};
+
/*
* Taken from https://github.com/jquery/qunit/tree/master/addons/close-enough
*/