(count)
| 58 | } |
| 59 | |
| 60 | function createItems (count) |
| 61 | { |
| 62 | var items = []; |
| 63 | |
| 64 | for (var i = 0; i < count; i++) |
| 65 | { |
| 66 | items.push(createItem()); |
| 67 | } |
| 68 | |
| 69 | return items; |
| 70 | } |
| 71 | |
| 72 | describe('Phaser.Actions.GridAlign', function () |
| 73 | { |
no test coverage detected
searching dependent graphs…