MCPcopy Create free account
hub / github.com/chokcoco/iCSS / constructor

Method constructor

MCP/test-inspiration.js:11–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9
10class 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');

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected