mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
|
QUnit.module( "exports", { teardown: moduleTeardown } );
|
||
|
|
||
|
QUnit.test( "amdModule", function( assert ) {
|
||
|
assert.expect( 1 );
|
||
|
|
||
|
assert.equal( jQuery, amdDefined, "Make sure defined module matches jQuery" );
|
||
|
} );
|