mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
c349818742
Also, run `grunt npmcopy` to sync the "external" directory with dependencies from package.json. For example, the Sinon library version didn't match. Ref gh-4234 Closes gh-4297
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
QUnit.module( "exports", { afterEach: moduleTeardown } );
|
|
|
|
QUnit.test( "amdModule", function( assert ) {
|
|
assert.expect( 1 );
|
|
|
|
assert.equal( jQuery, amdDefined, "Make sure defined module matches jQuery" );
|
|
} );
|