mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Fixes https://github.com/flutter/flutter/issues/143482 This brings in the gallery more or less as is: * Removed localizations * Ensure tests still run (locally verified, will switch CI later). * Removed deferred components * Fixup pubspec
15 lines
464 B
Dart
15 lines
464 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:gallery/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('Smoke test', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const GalleryApp());
|
|
await tester.pumpAndSettle();
|
|
expect(find.text('Gallery'), findsOneWidget);
|
|
});
|
|
}
|