A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:integration_test/integration_test_driver_extended.dart';
|
|
|
|
|
|
|
|
Future<void> main() async {
|
|
|
|
Directory('screenshots').createSync();
|
|
|
|
try {
|
|
|
|
await integrationDriver(
|
|
|
|
onScreenshot: (final screenshotName, final screenshotBytes) async {
|
|
|
|
final file = File('screenshots/$screenshotName.png');
|
|
|
|
if (!file.existsSync()) {
|
|
|
|
file.writeAsBytesSync(screenshotBytes);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} catch (e) {
|
|
|
|
// ignore: avoid_print
|
|
|
|
print('Error occurred: $e');
|
|
|
|
}
|
|
|
|
}
|