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
)
26 lines
630 B
JavaScript
26 lines
630 B
JavaScript
"use strict";
|
|
|
|
const assert = require( "node:assert" );
|
|
const { JSDOM } = require( "jsdom" );
|
|
|
|
const { ensureJQuery } = require( "./ensure_jquery" );
|
|
|
|
const ensureIterability = ( jQueryModuleSpecifier ) => {
|
|
const { window } = new JSDOM( "" );
|
|
|
|
const jQueryFactory = require( jQueryModuleSpecifier );
|
|
const jQuery = jQueryFactory( window );
|
|
const elem = jQuery( "<div></div><span></span><a></a>" );
|
|
|
|
ensureJQuery( jQuery );
|
|
|
|
let result = "";
|
|
for ( const node of elem ) {
|
|
result += node.nodeName;
|
|
}
|
|
|
|
assert.strictEqual( result, "DIVSPANA", "for-of works on jQuery objects" );
|
|
};
|
|
|
|
module.exports = { ensureIterability };
|