19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
/**
|
|
* QUnit tests for ULS
|
|
*
|
|
* @file
|
|
* @author Santhosh Thottingal
|
|
* @copyright Copyright © 2012 Santhosh Thottingal
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
|
*/
|
|
( function () {
|
|
|
|
module( "ext.uls", QUnit.newMwEnvironment() );
|
|
|
|
test( "-- Initial check", function() {
|
|
expect( 1 );
|
|
ok( $.fn.uls, "$.fn.uls is defined" );
|
|
} );
|
|
|
|
}());
|