]> gerrit.simantics Code Review - simantics/district.git/blob - test/table.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / test / table.js
1 var test = require('tape');
2 var table = require('../');
3
4 test('table', function (t) {
5     t.plan(1);
6     var s = table([
7         [ 'master', '0123456789abcdef' ],
8         [ 'staging', 'fedcba9876543210' ]
9     ]);
10     t.equal(s, [
11         'master   0123456789abcdef',
12         'staging  fedcba9876543210'
13     ].join('\n'));
14 });