Barcode Generation

This commit is contained in:
CAnetzberger
2022-02-21 15:01:43 +01:00
parent aa6c93f3f6
commit 79ec11e25c
224 changed files with 22474 additions and 95 deletions

41
node_modules/jsbarcode/test/node/Object-Render.test.js generated vendored Normal file
View File

@@ -0,0 +1,41 @@
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'));
});
});