blob: 8c149c4c9606b566a55d0d0c5c17f82b57f9f584 (
plain)
1
2
3
4
5
6
7
|
import { convertAAGUIDToString } from './convertAAGUIDToString';
test('should convert buffer to UUID string', () => {
const uuid = convertAAGUIDToString(Buffer.from('adce000235bcc60a648b0b25f1f05503', 'hex'));
expect(uuid).toEqual('adce0002-35bc-c60a-648b-0b25f1f05503');
});
|