Skip to content

Commit c42e444

Browse files
eddietismabrandonroberts
authored andcommitted
fix(store): added noop for addFeature in MockReducerManager (#2265)
Closes #2263
1 parent e888977 commit c42e444

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

modules/store/testing/src/mock_reducer_manager.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,12 @@ export class MockReducerManager extends BehaviorSubject<
99
constructor() {
1010
super(() => undefined);
1111
}
12+
13+
addFeature(feature: any) {
14+
/* noop */
15+
}
16+
17+
addFeatures(feature: any) {
18+
/* noop */
19+
}
1220
}

0 commit comments

Comments
 (0)