ajquery.js/tests/esm.mjs

13 lines
256 B
JavaScript
Raw Permalink Normal View History

2024-08-29 23:00:30 +00:00
"use strict";
import AJQueryExplicit from "../ajquery.mjs";
if (!AJQueryExplicit.$) {
throw new Error("did not export $ correctly");
}
if (!AJQueryExplicit.$$) {
throw new Error("did not export $$ correctly");
}
console.log(`\x1b[34mPASS\x1b[33m`);