Core: Fix the exports setup to make bundlers work with ESM & CommonJS
[jquery.git] / test / node_smoke_tests / module / lib / ensure_jquery.js
blob13749306ea66e93d0f0cb1d47fe61b3475e82d82
1 import assert from "node:assert/strict";
3 // Check if the object we got is the jQuery object by invoking a basic API.
4 export const ensureJQuery = ( jQuery ) => {
5         assert( /^jQuery/.test( jQuery.expando ),
6                 "jQuery.expando was not detected, the jQuery bootstrap process has failed" );
7 };