(condition, message)
| 46 | } |
| 47 | |
| 48 | function assert(condition, message) { |
| 49 | if (!condition) { |
| 50 | throw new Error(message || 'Assertion failed'); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | function main() { |
| 55 | console.log('\nCitadel Security Test Suite\n' + '='.repeat(40)); |
no outgoing calls
no test coverage detected