1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 14:58:34 +00:00

Add flutter_lints to ios_app_clip (#824)

This commit is contained in:
Brett Morgan
2021-06-09 16:34:18 +10:00
committed by GitHub
parent b34cc5671a
commit 4633bb0406
5 changed files with 45 additions and 9 deletions

View File

@@ -15,9 +15,9 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:ios_app_clip/main.dart';
void main() {
testWidgets('Smoke test', (WidgetTester tester) async {
testWidgets('Smoke test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(Demo());
await tester.pumpWidget(const Demo());
expect(find.byType(FlutterLogo), findsOneWidget);
});