17 lines
535 B
Dart
17 lines
535 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:essence_daily_core/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('EssenceDailyCore app smoke test', (WidgetTester tester) async {
|
|
// Note: This is a basic smoke test
|
|
// Full testing requires Hive initialization mock
|
|
|
|
// Build our app and trigger a frame.
|
|
// await tester.pumpWidget(const EssenceDailyCoreApp());
|
|
|
|
// Verify app can be instantiated
|
|
expect(const EssenceDailyCoreApp(), isA<Widget>());
|
|
});
|
|
}
|