Merge pull request #11047 from BerkeleyTrue/fix/test-suite

Fix: test suite disappearing
This commit is contained in:
Quincy Larson
2016-10-04 10:43:10 -07:00
committed by GitHub

View File

@ -98,7 +98,7 @@ document.addEventListener('DOMContentLoaded', function() {
// and collapsing the pipe // and collapsing the pipe
newTest.err = err.message + '\n' + err.stack; newTest.err = err.message + '\n' + err.stack;
// RxJS catch expects an observable as a return // RxJS catch expects an observable as a return
return Rx.Observable.of(err); return Rx.Observable.of(newTest);
}); });
}) })
// gather tests back into an array // gather tests back into an array