Fix failed test due to removed getConfigs

This commit is contained in:
Owen Conti
2017-08-20 08:16:02 -06:00
parent 2946baf2bd
commit 8426dcdf7b
2 changed files with 4 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ export default class Operation extends PureComponent {
onExecute: PropTypes.func.isRequired, onExecute: PropTypes.func.isRequired,
getComponent: PropTypes.func.isRequired, getComponent: PropTypes.func.isRequired,
getConfigs: PropTypes.func.isRequired,
authActions: PropTypes.object, authActions: PropTypes.object,
authSelectors: PropTypes.object, authSelectors: PropTypes.object,
specActions: PropTypes.object.isRequired, specActions: PropTypes.object.isRequired,
@@ -42,6 +43,7 @@ export default class Operation extends PureComponent {
onExecute, onExecute,
fn, fn,
getComponent, getComponent,
getConfigs,
specActions, specActions,
specSelectors, specSelectors,
authActions, authActions,

View File

@@ -157,6 +157,7 @@ export default class Operation extends PureComponent {
specSelectors, specSelectors,
specActions, specActions,
getComponent, getComponent,
getConfigs,
layoutSelectors, layoutSelectors,
layoutActions, layoutActions,
authActions, authActions,
@@ -202,6 +203,7 @@ export default class Operation extends PureComponent {
authActions={ authActions } authActions={ authActions }
authSelectors={ authSelectors } authSelectors={ authSelectors }
getComponent={ getComponent } getComponent={ getComponent }
getConfigs={ getConfigs }
fn={fn} fn={fn}
/> />
) )