(vibe) Added testframework

This commit is contained in:
douwe
2026-03-19 08:44:01 +01:00
parent 49f253a546
commit 50cd7c10ce
15 changed files with 772 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
// Screeps console command to run tests
// Copy and paste this into the Screeps console to run all tests
if (typeof runTests === 'function') {
console.log('Running Douwco Hivemind tests...');
runTests();
} else {
console.log('ERROR: runTests function not found. Make sure the WASM module is loaded.');
}