(opts, y, x)
| 116 | |
| 117 | describe('fillInTable', function () { |
| 118 | function mc(opts, y, x) { |
| 119 | let cell = new Cell(opts); |
| 120 | cell.x = x; |
| 121 | cell.y = y; |
| 122 | return cell; |
| 123 | } |
| 124 | |
| 125 | it('will blank out individual cells', function () { |
| 126 | let cells = [[mc('a', 0, 1)], [mc('b', 1, 0)]]; |