mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 01:18:56 +00:00

* test: add document sync test on appflowy cloud * chore: add runner * test: Stream has already been listened to. * fix: using singleton subscription * fix: using singleton subscription
19 lines
520 B
Dart
19 lines
520 B
Dart
import 'package:appflowy/env/cloud_env.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import '../util/util.dart';
|
|
|
|
// This test is meaningless, just for preventing the CI from failing.
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
group('Empty', () {
|
|
testWidgets('set appflowy cloud', (tester) async {
|
|
await tester.initializeAppFlowy(
|
|
cloudType: AuthenticatorType.appflowyCloud,
|
|
);
|
|
});
|
|
});
|
|
}
|