-
-
Notifications
You must be signed in to change notification settings - Fork 424
/
Copy pathtest.js
49 lines (44 loc) · 1.17 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const escpos = require('..');
const assert = require('assert');
describe('ESC/POS printing test', function() {
it('device#write', function(done){
var device = new escpos.Console(function(data){
assert.equal(data.length, 3);
done();
});
device.write(Buffer.alloc(3));
})
it('printer#print', function(done){
var device = new escpos.Console(function(data){
assert.deepEqual(data, Buffer.from('hello world'));
done();
});
var printer = new escpos.Printer(device);
printer.print('hello world').flush();
})
it('printer#tableCustom', function (done){
var output = null
var device = new escpos.Console(function(data) {
assert.deepEqual(data, Buffer.from("hello world"));
done();
});
var printer = new escpos.Printer(device)
output = printer
.font('A')
.encode('utf8')
.tableCustom([
{ text: "Check:13", align: "LEFT" },
{ text: "Table:A1", align: "RIGHT" }
], { size: [2, 1] })
.newLine()
.align("CT")
.size(1, 1)
.text("Misafir")
.size(2, 1)
.text("Check")
.resetStyle()
.drawLine()
.cut()
.close()
})
});