diff options
author | gnarf <gnarf@gnarf.net> | 2011-05-01 06:23:19 -0500 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-05-01 06:23:19 -0500 |
commit | ec5aeb1b154a023e2630d21aa7982ca13a00f03e (patch) | |
tree | 09cafa4d7ac520766d6d660fd56aa9d6a5dfa456 /tests/unit/effects/effects.html | |
parent | d82a44ab4bf50675a843ebf752fe1dbca3ef38df (diff) | |
download | jquery-ui-ec5aeb1b154a023e2630d21aa7982ca13a00f03e.tar.gz jquery-ui-ec5aeb1b154a023e2630d21aa7982ca13a00f03e.zip |
Unit Tests: Adding some basic unit tests for effects.* modules
Diffstat (limited to 'tests/unit/effects/effects.html')
-rw-r--r-- | tests/unit/effects/effects.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/effects/effects.html b/tests/unit/effects/effects.html index 479fc3889..2cffda7ec 100644 --- a/tests/unit/effects/effects.html +++ b/tests/unit/effects/effects.html @@ -32,10 +32,9 @@ <script src="../swarminject.js"></script> <style type="text/css"> - /* - Space intentionally left blank - eventually - we will probably define some basic css here to test effects - */ + .hidden { + display: none; + } </style> </head> <body> @@ -48,7 +47,8 @@ </ol> <div id="qunit-fixture"> - + <div class="hidden test"></div> + <div class="shown test"></div> </div> </body> |