Merge pull request #45 from Bouncey/fix/ui

Fix up the UI and pull in the latest seed files
This commit is contained in:
Stuart Taylor
2018-05-18 14:54:21 +01:00
committed by Mrugesh Mohapatra
parent 04a6a2026c
commit f962d7774a
105 changed files with 7019 additions and 9431 deletions

View File

@@ -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)))
);