We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d0e28 commit e872211Copy full SHA for e872211
test/bloc_test.dart
@@ -16,12 +16,6 @@ void main() {
16
expect: () => [],
17
);
18
19
- blocTest<SettingsBloc, SettingsState>(
20
- 'emit default settings model when nothing is changed',
21
- build: () => SettingsBloc(_settingsRepository),
22
- act: (bloc) => bloc.add(SettingsUpdatedEvent(settingsModel)),
23
- expect: () => [CurrentSettingsState(settingsModel)],
24
- );
25
blocTest<SettingsBloc, SettingsState>(
26
'emits new settings model, settings saved correctly and getParamsList has the new setting',
27
build: () => SettingsBloc(_settingsRepository),
0 commit comments