it0/it0_app/test/widget_test.dart

10 lines
288 B
Dart

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));
});
}