()
| 13 | |
| 14 | it('Basic Usage', function () { |
| 15 | function makeTable() { |
| 16 | // By default, headers will be red, and borders will be grey |
| 17 | let table = new Table({ head: ['a', 'b'] }); |
| 18 | |
| 19 | table.push(['c', 'd']); |
| 20 | |
| 21 | return table; |
| 22 | } |
| 23 | |
| 24 | let expected = [ |
| 25 | colors.gray('┌───') + colors.gray('┬───┐'), |
no outgoing calls
no test coverage detected
searching dependent graphs…