(id: string | null = null)
| 19 | } from '../../../lib'; |
| 20 | |
| 21 | function createRenderTarget(id: string | null = null) { |
| 22 | let element = document.createElement('div'); |
| 23 | element.className = 'cycletest'; |
| 24 | if (id) { |
| 25 | element.id = id; |
| 26 | } |
| 27 | document.body.appendChild(element); |
| 28 | return element; |
| 29 | } |
| 30 | |
| 31 | describe('DOMSource.select()', function () { |
| 32 | it('should have Observable `:root` in DOM source', function (done) { |