CSS: Make the reliableTrDimensions support test work with Bootstrap CSS
[jquery.git] / test / node_smoke_tests / lib / ensure_jquery.js
blob5b7c064f1408d59754e197a937808be199f9bbdd
1 "use strict";
3 const assert = require( "assert" );
5 // Check if the object we got is the jQuery object by invoking a basic API.
6 const ensureJQuery = ( jQuery ) => {
7         assert( /^jQuery/.test( jQuery.expando ),
8                 "jQuery.expando was not detected, the jQuery bootstrap process has failed" );
9 };
11 module.exports = ensureJQuery;