Tests: Add custom attribute getter tests to the selector module
[jquery.git] / test / node_smoke_tests / module / lib / ensure_global_not_created.js
blobcaccd82e36a2f36fe44318edfc91b21a3fc89520
1 import assert from "node:assert/strict";
3 // Ensure the jQuery property on global/window/module "this"/etc. was not
4 // created in a CommonJS environment.
5 // `global` is always checked in addition to passed parameters.
6 export const ensureGlobalNotCreated = ( ...args ) => {
7         [ ...args, global ].forEach( function( object ) {
8                 assert.strictEqual( object.jQuery, undefined,
9                         "A jQuery global was created in a module environment." );
10         } );