mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
7 lines
211 B
JavaScript
7 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" );
|
|
} );
|