|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('App smoke test', (WidgetTester tester) async {
|
|
// Placeholder test — the app requires ProviderScope + async init
|
|
// which makes simple widget tests non-trivial.
|
|
expect(1 + 1, equals(2));
|
|
});
|
|
}
|