test(phase22): add aggregate phase runner entrypoint

This commit is contained in:
2026-03-25 10:43:38 +00:00
parent 7553f992b7
commit 64201a6591
2 changed files with 44 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const runCoreTokenTests = require("./core-token-behaviour.test.cjs");
const run = async () => {
await runCoreTokenTests();
console.log("Phase 22 combined suite passed.");
};
if (require.main === module) {
run().catch((error) => {
console.error(error);
process.exit(1);
});
}
module.exports = run;