(id: string | null = null)
| 35 | } |
| 36 | |
| 37 | function createRenderTarget(id: string | null = null) { |
| 38 | let element = document.createElement('div'); |
| 39 | element.className = 'cycletest'; |
| 40 | if (id) { |
| 41 | element.id = id; |
| 42 | } |
| 43 | document.body.appendChild(element); |
| 44 | return element; |
| 45 | } |
| 46 | |
| 47 | describe('DOM Rendering', function () { |
| 48 | it('should render DOM elements even when DOMSource is not utilized', function (done) { |