mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-06 18:25:11 +08:00
9 lines
187 B
Dart
9 lines
187 B
Dart
// The CI needs at least one test
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Fake test', (WidgetTester tester) async {
|
|
expect(true, true);
|
|
});
|
|
}
|