mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
9c8a3ecdc4
Utilize the assert module, avoid inline JSHint comments.
18 lines
452 B
JavaScript
18 lines
452 B
JavaScript
"use strict";
|
|
|
|
var assert = require( "assert" );
|
|
|
|
require( "jsdom" ).env( "", function( errors, window ) {
|
|
assert.ifError( errors );
|
|
|
|
// Pretend the window is a global.
|
|
global.window = window;
|
|
|
|
var ensureJQuery = require( "./lib/ensure_jquery" ),
|
|
ensureGlobalNotCreated = require( "./lib/ensure_global_not_created" ),
|
|
jQuery = require( "../../dist/jquery.js" );
|
|
|
|
ensureJQuery( jQuery );
|
|
ensureGlobalNotCreated( module.exports, window );
|
|
} );
|