10 lines
295 B
Dart
10 lines
295 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('App loads correctly', (WidgetTester tester) async {
|
|
// Build our app and trigger a frame.
|
|
// Note: This is a placeholder test - integration tests require Hive initialization
|
|
expect(true, isTrue);
|
|
});
|
|
}
|