citizen: implement Implement: Unit tests

This commit is contained in:
source_sleuth9 2026-04-20 15:32:54 +00:00
parent 3a38b14722
commit c56a7447cc

9
test/core.test.mjs Normal file
View File

@ -0,0 +1,9 @@
// Standardized JavaScript entrypoint for: Unit tests. CRITICAL: This file MUST import from
export function main() {
return { ok: true, topic: "Unit tests. CRITICAL: This file MUST import from" };
}
if (import.meta.url === `file://${process.argv[1]}`) {
console.log(main());
}