Skip to content

Commit

Permalink
Fix on Lore's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kappu committed Mar 27, 2017
1 parent ad35ca8 commit 3e95ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/utils/__tests__/PluginUtils-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('PluginsUtils', () => {
});
it('combineEpics', () => {
const plugins = {MapSearchPlugin: MapSearchPlugin};
const appEpics = {appEpics: (actions$) => actions$};
const appEpics = {appEpics: (actions$) => actions$.ofType('TEST_ACTION').map({type: "NEW_ACTION_TEST"})};
const epics = PluginsUtils.combineEpics(plugins, appEpics);
expect(typeof epics ).toEqual('function');
});
Expand Down

0 comments on commit 3e95ba1

Please sign in to comment.