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.
23 lines
606 B
23 lines
606 B
import 'dart:io'; |
|
|
|
import 'package:integration_test/integration_test_driver_extended.dart'; |
|
|
|
Future<void> main() async { |
|
final screenshotsDir = Directory('screenshots'); |
|
if (screenshotsDir.existsSync()) { |
|
screenshotsDir.deleteSync(recursive: true); |
|
} |
|
screenshotsDir.createSync(); |
|
|
|
try { |
|
await integrationDriver( |
|
onScreenshot: (final screenshotName, final screenshotBytes) async { |
|
File('screenshots/$screenshotName.png').writeAsBytesSync(screenshotBytes); |
|
return true; |
|
}, |
|
); |
|
} catch (e) { |
|
// ignore: avoid_print |
|
print('Error occurred: $e'); |
|
} |
|
}
|
|
|