Skip to content

Commit

Permalink
fix(store): added noop for addFeature in MockReducerManager
Browse files Browse the repository at this point in the history
  • Loading branch information
eddietisma authored Nov 15, 2019
1 parent ce6ebb3 commit 82bb972
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 82bb972

Please sign in to comment.