Skip to content

Commit

Permalink
Add requestAccess() test
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Jul 28, 2023
1 parent 4ce632b commit e263e8f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions example/integration_test/integration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit e263e8f

Please sign in to comment.