Rx-Async: added test for startAsync.

This commit is contained in:
Igor Oleinikov
2014-03-18 11:53:56 +04:00
parent 5c938e56b0
commit 6c4fcd6035

View File

@@ -81,4 +81,8 @@ module Rx.Tests.Async {
ps = p.then(x=> "");
ps = p.then(x=> ps);
}
function startAsync() {
var o: Rx.Observable<string> = Rx.Observable.startAsync(() => <Rx.IPromise<string>>null);
}
}