Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dillon Nys committed Sep 4, 2023
1 parent 701193c commit ba0cf3a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/e2e_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
flutter-version: 3.10.6

- name: Pub Upgrade
run: aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/e2e_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
flutter-version: 3.10.6

- name: Launch iOS simulator
uses: ./.github/composite_actions/launch_ios_simulator
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/e2e_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
flutter-version: 3.10.6

- name: Pub Upgrade
run: aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/e2e_web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
flutter-version: 3.10.6

- name: Pub Upgrade
run: aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/e2e_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
flutter-version: 3.10.6

- name: Pub Upgrade
run: dart pub global run aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ Future<String> adminCreateUser(

// Prevent eventual consistency issues caused by authenticating a user
// too quickly after creation.
await Future<void>.delayed(const Duration(milliseconds: 200));
await Future<void>.delayed(const Duration(milliseconds: 500));

return cognitoUsername;
}
Expand Down

0 comments on commit ba0cf3a

Please sign in to comment.