projecte_ionic/node_modules/text-table/test/dotalign.js
2022-02-09 18:30:03 +01:00

21 lines
453 B
JavaScript
Executable file

var test = require('tape');
var table = require('../');
test('dot align', function (t) {
t.plan(1);
var s = table([
[ 'beep', '1024' ],
[ 'boop', '334.212' ],
[ 'foo', '1006' ],
[ 'bar', '45.6' ],
[ 'baz', '123.' ]
], { align: [ 'l', '.' ] });
t.equal(s, [
'beep 1024',
'boop 334.212',
'foo 1006',
'bar 45.6',
'baz 123.'
].join('\n'));
});