You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pinball/test/app/view/app_test.dart

20 lines
567 B

// Copyright (c) 2021, Very Good Ventures
// https://verygood.ventures
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
import 'package:flutter_test/flutter_test.dart';
import 'package:pinball/app/app.dart';
import 'package:pinball/landing/landing.dart';
void main() {
group('App', () {
testWidgets('renders LandingPage', (tester) async {
await tester.pumpWidget(const App());
expect(find.byType(LandingPage), findsOneWidget);
});
});
}