@ -5,7 +5,7 @@
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
import {Observable, of , timer} from 'rxjs';
|
||||
import {Observable, of, timer} from 'rxjs';
|
||||
import {delayWhen, map, retryWhen} from 'rxjs/operators';
|
||||
|
||||
describe('Observable.retryWhen', () => {
|
||||
@ -18,14 +18,16 @@ describe('Observable.retryWhen', () => {
|
||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
|
||||
});
|
||||
|
||||
afterEach(() => { jasmine.DEFAULT_TIMEOUT_INTERVAL = defaultTimeout; });
|
||||
afterEach(() => {
|
||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = defaultTimeout;
|
||||
});
|
||||
|
||||
it('retryWhen func callback should run in the correct zone', (done: DoneFn) => {
|
||||
const constructorZone1: Zone = Zone.current.fork({name: 'Constructor Zone'});
|
||||
const subscriptionZone: Zone = Zone.current.fork({name: 'Subscription Zone'});
|
||||
let isErrorHandled = false;
|
||||
observable1 = constructorZone1.run(() => {
|
||||
return of (1, 2, 3).pipe(
|
||||
return of(1, 2, 3).pipe(
|
||||
map(v => {
|
||||
if (v > 2 && !isErrorHandled) {
|
||||
isErrorHandled = true;
|
||||
@ -42,7 +44,9 @@ describe('Observable.retryWhen', () => {
|
||||
log.push(result);
|
||||
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
||||
},
|
||||
(err: any) => { fail('should not call error'); },
|
||||
(err: any) => {
|
||||
fail('should not call error');
|
||||
},
|
||||
() => {
|
||||
log.push('completed');
|
||||
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
||||
|
Reference in New Issue
Block a user