feat(Label): Use capability-aware label availability in websocket injection.
This commit is contained in:
+2
-1
@@ -365,7 +365,8 @@ void main() {
|
||||
|
||||
when(emailReceiveManager.pendingSharedFileInfo).thenAnswer((_) => BehaviorSubject.seeded([]));
|
||||
when(downloadController.downloadUIAction).thenAnswer((_) => Rxn(DownloadUIAction.idle));
|
||||
when(labelController.isLabelSettingEnabled).thenAnswer((_) => RxBool(false));
|
||||
final isLabelSettingEnabled = RxBool(false);
|
||||
when(labelController.isLabelSettingEnabled).thenReturn(isLabelSettingEnabled);
|
||||
|
||||
searchController = SearchController(
|
||||
quickSearchEmailInteractor,
|
||||
|
||||
Reference in New Issue
Block a user