diff --git a/example/integration_test/integration_test.dart b/example/integration_test/integration_test.dart index 2ce6683a..588c6d59 100644 --- a/example/integration_test/integration_test.dart +++ b/example/integration_test/integration_test.dart @@ -23,6 +23,14 @@ void main() { expect(tester.takeException(), isNull); }); + testWidgets('requestAccess()', (tester) async { + app.main(); + await tester.pumpAndSettle(); + final button = find.byIcon(Icons.privacy_tip_outlined); + await tester.tap(button); + expect(tester.takeException(), isNull); + }); + testWidgets('putVideo()', (tester) async { app.main(); await tester.pumpAndSettle();