We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 927cf91 commit 9ee61cbCopy full SHA for 9ee61cb
test/over_react/experimental/redux_component_test.dart
@@ -166,22 +166,6 @@ void main() {
166
167
expect(component.numberOfRedraws, 1);
168
});
169
-
170
- test('when calling redraw', () {
171
- var store = new Store<BaseState, BaseStateBuilder, BaseActions>(
172
- baseReducerBuilder.build(),
173
- baseState,
174
- baseActions,
175
- );
176
- var jacket = mount<TestPureComponent>((TestPure()..store = store)());
177
- TestPureComponent component = jacket.getDartInstance();
178
179
- expect(component.numberOfRedraws, 0);
180
181
- component.redraw();
182
183
- expect(component.numberOfRedraws, 1);
184
- });
185
186
187
test('updates subscriptions when new props are passed', () async {
0 commit comments