Localization delegate is messing with widget test flutter

Issue I have a custom LocalizationDelegate that deals with my app localizations : class LocalizationDelegate extends LocalizationsDelegate<Localization> { const LocalizationDelegate(); @override bool isSupported(Locale locale) => [‘en’, ‘fr’].contains(locale.languageCode); @override Future<Localization> load(Locale locale) async { String string = await rootBundle .loadString("assets/strings/${locale.languageCode}.json"); language

Continue reading