Files
mediawiki-extensions-Univer…/tests/qunit/ext.uls.tests.js
Santhosh Thottingal 8527e33475 Skeleton extension for Universal Language Selector
* Basic extension code with i18n
* Adds a link to personal links to trigger ULS
* Core uls javascript code, to plug to the given trigger.
* Qunit, PHPUnit framework in place.
* and lot of TODOs and FIXMEs

Patch set 2:
* A tiny whitespace fix.

Change-Id: I300647a21e0b7f65b7d9dc6101014ea9389c9f2a
2012-06-15 10:49: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( 2 );
ok( $.fn.uls, "$.fn.uls is defined" );
} );
}());