Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lesnitsky committed Oct 4, 2023
1 parent b59c377 commit 7891c26
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
firebase emulators:start &
cd ../emulator_proxy
echo "Starting emulator proxy"
dart run emulator_proxy:start 150 &
dart run emulator_proxy:start 100 &
- name: Create and start emulator
# We use the installed SDK in the macOS image to create and start the emulator
run: |
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
firebase emulators:start &
cd ../emulator_proxy
echo "Starting emulator proxy"
dart run emulator_proxy:start 150 &
dart run emulator_proxy:start 100 &
- name: "E2E Tests"
working-directory: tests
run: |
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
firebase emulators:start &
cd ../emulator_proxy
echo "Starting emulator proxy"
dart run emulator_proxy:start 150 &
dart run emulator_proxy:start 100 &
- name: "E2E Tests"
working-directory: tests
run: flutter test ./integration_test/firebase_ui_test.dart -d macos --dart-define=CI=true
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,12 @@ void main() {
}

// allow for more items to be fetcehed
await Future.delayed(const Duration(milliseconds: 250));
await Future.delayed(const Duration(milliseconds: 500));

await tester.drag(
find.byKey(const ValueKey('4')),
Offset(0, -size * 5),
touchSlopY: 0,
);

await tester.pumpAndSettle();
Expand All @@ -184,11 +185,12 @@ void main() {
}

// allow for more items to be fetcehed
await Future.delayed(const Duration(milliseconds: 250));
await Future.delayed(const Duration(milliseconds: 500));

await tester.drag(
find.byKey(const ValueKey('9')),
Offset(0, -size * 5),
touchSlopY: 0,
);

await tester.pumpAndSettle();
Expand Down

0 comments on commit 7891c26

Please sign in to comment.