Skip to content

Commit

Permalink
fix actions/checkout@v2 checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisme committed Sep 17, 2021
1 parent b232afb commit 038ebfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
flutter devices
gem install fastlane
brew install imagemagick
bash test_driver/screenshot.sh
Expand Down
3 changes: 2 additions & 1 deletion test_driver/app_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ void main() {
// wait for notification to appear
SerializableFinder notification = find.text('1');
await driver.waitFor(notification);
driver.scrollIntoView(notification);
await driver.scrollIntoView(notification);
await driver.waitUntilNoTransientCallbacks(timeout: Duration(seconds: 5));
});
});
}
Expand Down

0 comments on commit 038ebfd

Please sign in to comment.