⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
jsbarcode
/
test
/
node
/
View File Name :
Object-Render.test.js
var assert = require('assert'); var JsBarcode = require('../../bin/JsBarcode.js'); var Canvas = require("canvas"); describe('Object', function() { it('should handle default options', function () { var data = {}; JsBarcode(data, '12345678'); assert.equal(typeof data.encodings, 'object'); }); it('should catch null', function() { assert.throws( () => { JsBarcode(null, '12345678'); }, /InvalidElementException/ ); }); it('should ignore dom elements', function() { var fakeElement = { nodeName: 'Some Dom Element' } assert.throws( () => { JsBarcode(fakeElement, '2345678'); }, /InvalidElementException/ ); }); it('should work for different types', function () { var data = {}; JsBarcode(data, '550000000000', { format: 'upc' }); assert.equal(data.encodings.length, 7); assert.ok(data.encodings.every((val) => val.options.format === 'upc')); }); });