Lobashov_Ivan_PIBD-21_IP/Lab2/node_modules/.text-table-lIS2lsmE/test/table.js
2024-01-10 22:39:31 +04:00

15 lines
326 B
JavaScript

var test = require('tape');
var table = require('../');
test('table', function (t) {
t.plan(1);
var s = table([
[ 'master', '0123456789abcdef' ],
[ 'staging', 'fedcba9876543210' ]
]);
t.equal(s, [
'master 0123456789abcdef',
'staging fedcba9876543210'
].join('\n'));
});