UNPKG

bigbasealpha

Version:

Professional Grade Custom Database System - A sophisticated, dependency-free database with encryption, caching, indexing, and web dashboard

33 lines (26 loc) โ€ข 878 B
/** * Simple test for Terminal UI Framework and Performance Analytics * CommonJS format for compatibility */ console.log('๐Ÿงช Testing BigBaseAlpha v1.3.0 Features (CommonJS)\n'); async function simpleTest() { try { // Test colors package const colors = await import('colors'); console.log('โœ… Colors package: LOADED'.green); // Test basic functionality console.log('โœ… Basic functionality: WORKING'.cyan); console.log('\n๐ŸŽ‰ Simple tests passed!'.rainbow); return true; } catch (error) { console.error('โŒ Test failed:', error.message); return false; } } // Run test simpleTest().then(success => { process.exit(success ? 0 : 1); }).catch(error => { console.error('๐Ÿ’ฅ Test error:', error); process.exit(1); });