MCPcopy Create free account
hub / github.com/coleam00/remote-agentic-coding-system / test

Function test

test-db.js:10–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8});
9
10async function test() {
11 try {
12 console.log('Testing connection to:', process.env.DATABASE_URL?.split('@')[1]);
13 const result = await pool.query('SELECT 1 as test');
14 console.log('✅ Connection successful!', result.rows);
15 await pool.end();
16 } catch (error) {
17 console.error('❌ Connection failed:', error.message);
18 process.exit(1);
19 }
20}
21
22test();

Callers 8

test-db.jsFile · 0.85
telegram.test.tsFile · 0.85
github.test.tsFile · 0.85
codex.test.tsFile · 0.85
claude.test.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected