2013-12-09 20:18:40 +00:00
|
|
|
( function ( /** mw, $ ** Commentted to keep lint happy, uncomment when needed */) {
|
2014-01-23 21:44:26 +00:00
|
|
|
QUnit.module( 'multilightbox.image', QUnit.newMwEnvironment() );
|
2013-12-09 20:18:40 +00:00
|
|
|
|
|
|
|
QUnit.asyncTest( 'Sanity test, object creation and image loading', 1, function ( assert ) {
|
|
|
|
var lightboxImage = new window.LightboxImage( 'http://en.wikipedia.org/w/skins/vector/images/search-ltr.png' );
|
|
|
|
|
|
|
|
// Function to be called if loading is successful
|
|
|
|
function loadCallback() {
|
|
|
|
assert.ok( true, 'Image loaded !' );
|
|
|
|
QUnit.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
lightboxImage.getImageElement( loadCallback );
|
|
|
|
} );
|
|
|
|
|
|
|
|
}( mediaWiki, jQuery ) );
|