test(phase22): add client utility behaviour coverage

This commit is contained in:
2026-03-25 10:49:37 +00:00
parent 64201a6591
commit 93eb19d028
3 changed files with 211 additions and 0 deletions
+2
View File
@@ -1,7 +1,9 @@
const runCoreTokenTests = require("./core-token-behaviour.test.cjs");
const runClientUtilsTests = require("./client-utils-behaviour.test.cjs");
const run = async () => {
await runCoreTokenTests();
await runClientUtilsTests();
console.log("Phase 22 combined suite passed.");
};