2023-12-21 08:12:40 +08:00
|
|
|
import 'package:appflowy/env/cloud_env.dart';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
2024-03-05 17:20:27 +08:00
|
|
|
import '../shared/util.dart';
|
2023-12-21 08:12:40 +08:00
|
|
|
|
|
|
|
// 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(
|
2024-01-12 14:34:59 +08:00
|
|
|
cloudType: AuthenticatorType.appflowyCloudSelfHost,
|
2023-12-21 08:12:40 +08:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|