(array1, array2)
| 48 | } |
| 49 | |
| 50 | function compareArrays(array1, array2) { |
| 51 | expect(array1.length).toEqual(array2.length); |
| 52 | |
| 53 | array2.forEach(value => { |
| 54 | expect(array1).toContain(value); |
| 55 | }); |
| 56 | } |
| 57 | |
| 58 | describe('number of rendered children', () => { |
| 59 | it('should render enough children to fill the available area', () => { |
no outgoing calls
no test coverage detected
searching dependent graphs…