mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
ab40725879
There is a lot of logic in intro.js; now we test four cases: 1. (implicitly, via QUnit tests) A real browser with window being the global 2. Browserify where there are both global & window variables. 3. Node with jsdom where window is passed manually to the jQuery factory. 4. Pure Node with incorrect window passed; jQuery should throw then. Previously the second & fourth case was not tested and the third was tested in a way that interfered with the main test environment. We now also test if in the Browserify case we're not creating a jQuery global by default. Fixes gh-2181 Closes gh-2234
20 lines
540 B
JavaScript
20 lines
540 B
JavaScript
/* jshint node: true */
|
|
|
|
"use strict";
|
|
|
|
var ensureGlobalNotCreated = require( "./lib/ensure_global_not_created" ),
|
|
jQueryFactory = require( "../../dist/jquery.js" );
|
|
|
|
try {
|
|
jQueryFactory( {} );
|
|
console.error( "The jQuery factory should reject window without a document" );
|
|
process.exit( 1 );
|
|
} catch ( e ) {
|
|
if ( e.message === "jQuery requires a window with a document" ) {
|
|
ensureGlobalNotCreated( module.exports );
|
|
process.exit( 0 );
|
|
}
|
|
console.error( "An unexpected error thrown; message: ", e.message );
|
|
process.exit( 1 );
|
|
}
|