mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
763ade6dda
Summary of the changes:
* expand `node_smoke_tests` to test the full & slim builds
* run `compare_size` on all built minified files; don't run it anymore on
unminified files where they don't provide lots of value
The main goal of this change is to make it easier to compare sizes of both the
full & slim builds between the `3.x-stable` & `main` branches.
Closes gh-5291
Ref gh-5255
(partially cherry-picked from commit 8be4c0e4f8
)
12 lines
332 B
JavaScript
12 lines
332 B
JavaScript
"use strict";
|
|
|
|
const assert = require( "node:assert" );
|
|
|
|
// Check if the object we got is the jQuery object by invoking a basic API.
|
|
const ensureJQuery = ( jQuery ) => {
|
|
assert( /^jQuery/.test( jQuery.expando ),
|
|
"jQuery.expando was not detected, the jQuery bootstrap process has failed" );
|
|
};
|
|
|
|
module.exports = { ensureJQuery };
|