mirror of
https://github.com/Ujwal223/FocusGram.git
synced 2026-05-21 15:06:49 +02:00
11 lines
303 B
Dart
11 lines
303 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:focusgram/main.dart';
|
|
|
|
void main() {
|
|
// Widget tests for FocusGram are not yet implemented.
|
|
// The app requires SharedPreferences and WebView which need mocking.
|
|
test('placeholder', () {
|
|
expect(FocusGramApp, isNotNull);
|
|
});
|
|
}
|