Merge pull request #45 from Bouncey/fix/ui
Fix up the UI and pull in the latest seed files
This commit is contained in:
committed by
Mrugesh Mohapatra
parent
04a6a2026c
commit
f962d7774a
@@ -12,7 +12,7 @@ import {
|
||||
concat
|
||||
} from 'rxjs/operators';
|
||||
import { ofType, combineEpics } from 'redux-observable';
|
||||
import _ from 'lodash';
|
||||
import { overEvery, isString } from 'lodash';
|
||||
|
||||
import {
|
||||
types,
|
||||
@@ -78,7 +78,7 @@ function executeChallengeEpic(action$, { getState }, { document }) {
|
||||
.flatMap(tests => {
|
||||
return from(tests).pipe(
|
||||
map(({ message }) => message),
|
||||
filter(_.overEvery(_.isString, Boolean)),
|
||||
filter(overEvery(isString, Boolean)),
|
||||
map(updateConsole),
|
||||
concat(of(updateTests(tests)))
|
||||
);
|
||||
|
Reference in New Issue
Block a user