TF-4229 Add isSelected && condition to non-RTL selectedIconWidget rendering to match RTL behavior.
This commit is contained in:
@@ -23,10 +23,12 @@ mixin ProvisioningLabelScenarioMixin {
|
||||
final accountId = dashboardController?.accountId.value;
|
||||
final labelController = dashboardController?.labelController;
|
||||
|
||||
if (createLabelInteractor == null || accountId == null) {
|
||||
if (dashboardController == null ||
|
||||
createLabelInteractor == null ||
|
||||
accountId == null) {
|
||||
log(
|
||||
'ProvisioningLabelScenarioMixin::provisionLabels '
|
||||
'skipped: missing CreateNewLabelInteractor or accountId',
|
||||
'skipped: missing dashboardController, CreateNewLabelInteractor, or accountId',
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
@@ -76,6 +76,7 @@ class SearchEmailWithTagScenario extends BaseTestScenario
|
||||
required String tagDisplayName,
|
||||
required int emailCount,
|
||||
}) async {
|
||||
// Emails provisioned by buildEmailsForLabel include the tag name in the subject
|
||||
final listEmailTileWithTag = $.tester.widgetList<EmailTileBuilder>(
|
||||
$(EmailTileBuilder).which<EmailTileBuilder>((widget) =>
|
||||
widget.presentationEmail.subject?.contains(tagDisplayName) == true),
|
||||
|
||||
Reference in New Issue
Block a user