flutter/examples/hello_world/test/hello_test.dart
2018-03-22 07:56:18 +01:00

16 lines
553 B
Dart

// Copyright 2016 The Chromium 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:hello_world/main.dart' as hello_world;
void main() {
testWidgets('Hello world smoke test', (WidgetTester tester) async {
hello_world.main(); // builds the app and schedules a frame but doesn't trigger one
await tester.pump(); // triggers a frame
expect(find.text('Hello, world!'), findsOneWidget);
});
}