Skip to content

Commit

Permalink
fix(store): add noop for all methods in MockReducerManager (#2777)
Browse files Browse the repository at this point in the history
  • Loading branch information
nagyadam2092 authored Nov 10, 2020
1 parent 14553f6 commit a489b48
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions modules/store/testing/src/mock_reducer_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,28 @@ export class MockReducerManager extends BehaviorSubject<
addFeatures(feature: any) {
/* noop */
}

removeFeature(feature: any) {
/* noop */
}

removeFeatures(features: any) {
/* noop */
}

addReducer(key: any, reducer: any) {
/* noop */
}

addReducers(reducers: any) {
/* noop */
}

removeReducer(featureKey: any) {
/* noop */
}

removeReducers(featureKeys: any) {
/* noop */
}
}

0 comments on commit a489b48

Please sign in to comment.