()
| 182 | } |
| 183 | |
| 184 | async function testInit() { |
| 185 | console.log('\n--- Init (entrypoint) ---') |
| 186 | try { |
| 187 | const { init } = await import('../src/entrypoints/init.js') |
| 188 | await init() |
| 189 | pass('init()', 'completed successfully') |
| 190 | } catch (err: any) { |
| 191 | fail('init()', err.message) |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | async function main() { |
| 196 | console.log('=== Services Layer Smoke Test ===') |