This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/text-table/test/table.js

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'));
});