Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/im/lib/utils/test/ |
Upload File : |
import {Utils} from "im.lib.utils"; describe('Utils', () => { describe('Types', () => { describe('isUuidV4', () => { it('function exists', () => { assert(typeof Utils.types.isUuidV4 === 'function'); }); it('returns false for incorrect values', () => { assert.equal(Utils.types.isUuidV4(), false); assert.equal(Utils.types.isUuidV4('1'), false); assert.equal(Utils.types.isUuidV4(1), false); assert.equal(Utils.types.isUuidV4({}), false); assert.equal(Utils.types.isUuidV4('0eb4bcb3149d414e56193031bcdfd3756edc'), false); }); it('returns true for correct uuid v4', () => { assert.equal(Utils.types.isUuidV4('0eb4bcb3-49d4-4e56-9303-bcdfd3756edc'), true); assert.equal(Utils.types.isUuidV4('0f6d3bf3-6a7a-4768-b5e9-eeb6d41124de'), true); assert.equal(Utils.types.isUuidV4('1bd94fe9-f37e-47fd-b32c-8685aab5b37f'), true); }); }); }); });