import { getCNBVersion } from '../src/index.ts'; import { describe, it, expect } from 'bun:test'; describe('getCNBVersion', () => { it('should return version info', async () => { const versionInfo = await getCNBVersion(); expect(versionInfo).toHaveProperty('version'); expect(versionInfo).toHaveProperty('commitID'); expect(versionInfo).toHaveProperty('hash'); }); });