8 lines
260 B
Dart
8 lines
260 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('App smoke test placeholder', (WidgetTester tester) async {
|
|
// Smoke tests to be added once app dependencies are available in test environment.
|
|
expect(true, isTrue);
|
|
});
|
|
}
|