MCPcopy Index your code
hub / github.com/codeaashu/claude-code / testBootstrapData

Function testBootstrapData

scripts/test-services.ts:114–126  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

112}
113
114async function testBootstrapData() {
115 console.log('\n--- Bootstrap Data ---')
116 try {
117 const bootstrap = await import('../src/services/api/bootstrap.js')
118
119 // fetchBootstrapData should not crash — just skip when no auth
120 await bootstrap.fetchBootstrapData()
121 pass('fetchBootstrapData', 'completes without crash (skips when no auth)')
122 } catch (err: any) {
123 // fetchBootstrapData catches its own errors, so this means an import-level issue
124 fail('Bootstrap data', err.message)
125 }
126}
127
128async function testSessionMemoryUtils() {
129 console.log('\n--- Session Memory ---')

Callers 1

mainFunction · 0.85

Calls 2

passFunction · 0.85
failFunction · 0.85

Tested by

no test coverage detected