Skip to content

Commit

Permalink
fix(store): added noop for addFeature in MockReducerManager (#2265)
Browse files Browse the repository at this point in the history
Closes #2263
  • Loading branch information
eddietisma authored and brandonroberts committed Nov 20, 2019
1 parent e888977 commit c42e444
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/store/testing/src/mock_reducer_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,12 @@ export class MockReducerManager extends BehaviorSubject<
constructor() {
super(() => undefined);
}

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

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

0 comments on commit c42e444

Please sign in to comment.