blob: f2c29d1115ac64a7668261d5603ff9cd62b63528 [file] [log] [blame]
// Copyright 2019, the Chromium project authors. Please see the AUTHORS file
// for details. 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 '../lib/main.dart';
void main() {
testWidgets('CloudFunctions example widget test',
(WidgetTester tester) async {
await tester.pumpWidget(MyApp());
expect(find.text('Cloud Functions example app'), findsOneWidget);
});
}