()
| 9 | |
| 10 | class InspirationTester { |
| 11 | constructor() { |
| 12 | this.dbPath = path.join(__dirname, 'data', 'icss.db'); |
| 13 | this.db = new Database.Database(this.dbPath, (err) => { |
| 14 | if (err) { |
| 15 | console.error('❌ Error opening database:', err); |
| 16 | process.exit(1); |
| 17 | } |
| 18 | }); |
| 19 | } |
| 20 | |
| 21 | async testDatabaseIntegrity() { |
| 22 | console.log('🔍 Testing database integrity...\n'); |
nothing calls this directly
no outgoing calls
no test coverage detected