Skip to content

Commit

Permalink
Merge pull request #6603 from benlesh/fix-randomly-failing-test
Browse files Browse the repository at this point in the history
chore: Skip test that sporadically fails
  • Loading branch information
kwonoj committed Oct 5, 2021
2 parents 7dd7f3c + 4fd3814 commit d837ee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/Observable-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ describe('Observable', () => {
});

// Discussion here: https://github.com/ReactiveX/rxjs/issues/5370
it('should handle sync errors within a test scheduler', () => {
it.skip('should handle sync errors within a test scheduler', () => {
const observable = of(4).pipe(
map(n => {
if (n === 4) {
Expand Down

0 comments on commit d837ee7

Please sign in to comment.