From 6c4fcd603514d5664cffd0c32d1025231613b8e9 Mon Sep 17 00:00:00 2001 From: Igor Oleinikov Date: Tue, 18 Mar 2014 11:53:56 +0400 Subject: [PATCH] Rx-Async: added test for `startAsync`. --- rx.js/rx.async-tests.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rx.js/rx.async-tests.ts b/rx.js/rx.async-tests.ts index 9403c7517..9c3bce516 100644 --- a/rx.js/rx.async-tests.ts +++ b/rx.js/rx.async-tests.ts @@ -81,4 +81,8 @@ module Rx.Tests.Async { ps = p.then(x=> ""); ps = p.then(x=> ps); } + + function startAsync() { + var o: Rx.Observable = Rx.Observable.startAsync(() => >null); + } } \ No newline at end of file