diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-10-28 15:58:33 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-10-28 15:58:33 -0400 |
commit | dcac8c1f29cd718c949c1b2c48681a90b0f647ed (patch) | |
tree | 417325b1d7c56154ec735b24b2d2211f2c757aba /tests/unit/core | |
parent | 94b852f1155d89ff52f3c59da736406b239dcca1 (diff) | |
download | jquery-ui-dcac8c1f29cd718c949c1b2c48681a90b0f647ed.tar.gz jquery-ui-dcac8c1f29cd718c949c1b2c48681a90b0f647ed.zip |
Tests: Added ability to run tests against minified files via ?min=1
Diffstat (limited to 'tests/unit/core')
-rw-r--r-- | tests/unit/core/core.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/unit/core/core.html b/tests/unit/core/core.html index e2d988806..3b1dc1fc8 100644 --- a/tests/unit/core/core.html +++ b/tests/unit/core/core.html @@ -5,8 +5,12 @@ <title>jQuery UI Core Test Suite</title> <script src="../../jquery.js"></script> - <script src="../../../ui/jquery.ui.core.js"></script> - <script src="../../../ui/jquery.ui.widget.js"></script> + <script src="../../resource_loader.js"></script> + <script> + loadResources({ + js: [ "ui/jquery.ui.core.js" ] + }); + </script> <link rel="stylesheet" href="../../../external/qunit.css"> <script src="../../../external/qunit.js"></script> |