mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-30 19:04:19 +00:00
24ee9dc48d
This reverts commit 5b89420182
.
Reason for revert: restore previously reverted patch
Bug: T64039
Change-Id: Iac4486ae785f308d2a572f383073cfb73c7cb523
10 lines
302 B
JavaScript
10 lines
302 B
JavaScript
const { LightboxImage } = require( 'mmv.bootstrap' );
|
|
|
|
QUnit.module( 'mmv.lightboximage', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( 'Sense test', function ( assert ) {
|
|
const lightboxImage = new LightboxImage( 'foo.png' );
|
|
|
|
assert.true( lightboxImage instanceof LightboxImage, 'Object created' );
|
|
} );
|