aboutsummaryrefslogtreecommitdiffstats
path: root/test/node_smoke_tests/module/lib/ensure_jquery.js
blob: 13749306ea66e93d0f0cb1d47fe61b3475e82d82 (plain)
1
2
3
4
5
6
7
import assert from "node:assert/strict";

// Check if the object we got is the jQuery object by invoking a basic API.
export const ensureJQuery = ( jQuery ) => {
	assert( /^jQuery/.test( jQuery.expando ),
		"jQuery.expando was not detected, the jQuery bootstrap process has failed" );
};