jquery.js 219 B

12345678910
  1. ( function( QUnit ) {
  2. QUnit.module( 'jQuery' );
  3. QUnit.test( 'jQuery is run in noConflict mode', function( assert ) {
  4. assert.expect( 1 );
  5. assert.ok( 'undefined' === typeof window.$ );
  6. } );
  7. } )( window.QUnit );