(name, fn)
| 6 | |
| 7 | module.exports = function (runTest) { |
| 8 | function it(name, fn) { |
| 9 | let result = fn(); |
| 10 | runTest(name, result[0], result[1], result[2]); |
| 11 | } |
| 12 | |
| 13 | it('use colSpan to span columns - (colSpan above normal cell)', function () { |
| 14 | function makeTable() { |
no test coverage detected