Urara-Blog/node_modules/.pnpm-store/v3/files/a9/6c3ffeaa142488663bf9542b2206312839ea95c72d5d1ff180bfe2e8a009f5c1505d36e0383a963caf548116587a5a54d00c26bbf05d1b936aa0181a70fd2a
2022-08-14 01:14:53 +08:00

18 lines
466 B
Text

var test = require('tape');
var table = require('../');
test('center', function (t) {
t.plan(1);
var s = table([
[ 'beep', '1024', 'xyz' ],
[ 'boop', '3388450', 'tuv' ],
[ 'foo', '10106', 'qrstuv' ],
[ 'bar', '45', 'lmno' ]
], { align: [ 'l', 'c', 'l' ] });
t.equal(s, [
'beep 1024 xyz',
'boop 3388450 tuv',
'foo 10106 qrstuv',
'bar 45 lmno'
].join('\n'));
});