Files
mediawiki-extensions-Univer…/tests/qunit/ext.uls.tests.js
Amir E. Aharoni 93ca0e5a48 Actually enabled running the JS tests
Change-Id: I5e66be0b5307024e6d21eaedf918ffcbd03d5ed3
2012-06-27 08:13:18 +03:00

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" );
} );
}());