Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Commit

Permalink
added some sleeps to see if that helps
Browse files Browse the repository at this point in the history
  • Loading branch information
ggilchrist-ledger committed May 2, 2022
1 parent 4137e7c commit dd90e9c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/detox-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
run: yarn e2e:build -c android.staging-ci

- name: Run Android tests
timeout-minutes: 10
timeout-minutes: 20
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
Expand Down
3 changes: 3 additions & 0 deletions e2e/specs/onboarding.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import OnboardingSteps from "../models/onboarding/onboardingSteps";
import PortfolioPage from "../models/portfolioPage";
// import { expectBitmapsToBeEqual } from "../helpers";
import { delay } from "../helpers";

describe("Onboarding", () => {
beforeAll(async () => {
Expand All @@ -22,7 +23,9 @@ describe("Onboarding", () => {
await OnboardingSteps.chooseToPairMyNano();
// await OnboardingSteps.addNewNano();
await OnboardingSteps.selectPairWithBluetooth();
await delay(5000);
await OnboardingSteps.addDeviceViaBluetooth();
await delay(5000);
await OnboardingSteps.openLedgerLive();

await PortfolioPage.waitForPageToBeVisible();
Expand Down
2 changes: 2 additions & 0 deletions e2e/specs/password.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ describe("Password Lock Screen", () => {
await PortfolioPage.waitForPageToBeVisible();
await PortfolioPage.navigateToSettings();
await SettingsPage.navigateToGeneralSettings();
await delay(1000);
await GeneralSettingsPage.togglePassword();
await delay(1000);
await GeneralSettingsPage.enterNewPassword(CORRECT_PASSWORD);
await GeneralSettingsPage.enterNewPassword(CORRECT_PASSWORD); // confirm password step

Expand Down

0 comments on commit dd90e9c

Please sign in to comment.