blob: 3cb2480527fcc4109586adfcb8d4fa6314ba233e (
plain)
1
2
3
4
5
6
7
|
QUnit.module( "exports", { afterEach: moduleTeardown } );
QUnit.test( "amdModule", function( assert ) {
assert.expect( 1 );
assert.equal( jQuery, amdDefined, "Make sure defined module matches jQuery" );
} );
|