Skip to content

Commit

Permalink
test(timeout): enable skipped test (#5748)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj authored Sep 24, 2020
1 parent 40e7de5 commit 2d5e4d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spec/operators/timeout-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,7 @@ describe('timeout operator', () => {
});
});

// TODO: fix firehose unsubscription
it.skip('should stop listening to a synchronous observable when unsubscribed', () => {
it('should stop listening to a synchronous observable when unsubscribed', () => {
const sideEffects: number[] = [];
const synchronousObservable = new Observable<number>(subscriber => {
// This will check to see if the subscriber was closed on each loop
Expand Down

0 comments on commit 2d5e4d5

Please sign in to comment.