9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
// 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.');
|
|
} |