()
| 9 | describe('HTML Driver', function () { |
| 10 | it('should output HTML when given a simple vtree stream', function (done) { |
| 11 | function app() { |
| 12 | return { |
| 13 | html: Rx.Observable.of(div('.test-element', ['Foobar'])), |
| 14 | }; |
| 15 | } |
| 16 | |
| 17 | function effect(html: string): void { |
| 18 | assert.strictEqual(html, '<div class="test-element">Foobar</div>'); |