Unverified Commit b3f0f092 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Disable the deferred loading variant of gen_l10n_test (#61912)

parent 9e658bc3
...@@ -151,17 +151,12 @@ void main() { ...@@ -151,17 +151,12 @@ void main() {
); );
} }
// TODO(jsimmons): need a localization test that uses deferred loading
// (see https://github.com/flutter/flutter/issues/61911)
test('generated l10n classes produce expected localized strings', () async { test('generated l10n classes produce expected localized strings', () async {
await project.setUpIn(tempDir); await project.setUpIn(tempDir);
flutter = FlutterRunTestDriver(tempDir); flutter = FlutterRunTestDriver(tempDir);
final StringBuffer stdout = await runApp(); final StringBuffer stdout = await runApp();
expectOutput(stdout); expectOutput(stdout);
}); });
test('generated l10n classes produce expected localized strings with deferred loading', () async {
await project.setUpIn(tempDir, useDeferredLoading: true);
flutter = FlutterRunTestDriver(tempDir);
final StringBuffer stdout = await runApp();
expectOutput(stdout);
});
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment