Add API Server (Go/PocketBase), Web App (Go BFF + Vue), Fly App (Flutter/DJI MSDK), Adobe Plugin, and Docker/Docker AIO deployment configs. Design assets and build artifacts are gitignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
371 B
Dart
14 lines
371 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:dji_msdk_sample/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('Shows the login screen when signed out',
|
|
(WidgetTester tester) async {
|
|
await tester.pumpWidget(const DjiSampleApp());
|
|
|
|
expect(find.text('Sign in'), findsWidgets);
|
|
expect(find.text('Sign in to continue'), findsOneWidget);
|
|
});
|
|
}
|