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