Skip to content

Commit

Permalink
Ignore timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos committed Aug 30, 2024
1 parent 2f65ee0 commit f5e2819
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/pub_integration/test/search_update_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ void main() {
print('02/02');
// click Android
await page.click('#search-form-checkbox-platform-android');
await page.waitForNavigation(wait: Until.networkIdle);
await page
.waitForNavigation(
wait: Until.networkIdle, timeout: Duration(seconds: 3))
.whenComplete(() => null);
print('02/03');
final i2 = await listingPageInfo(page);
expect(i2.totalCount, lessThan(80));
Expand Down

0 comments on commit f5e2819

Please sign in to comment.