Skip to content

Commit

Permalink
test: changed the display delay in ? of({}).pipe(delay(5000), rejecti…
Browse files Browse the repository at this point in the history
…onOp()) to 5000line 70
  • Loading branch information
0x1Marek committed Sep 28, 2023
1 parent ef44aa8 commit 9f6692a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/ledger-live-mobile/e2e/specs/depositFlow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe("Deposit Flow", () => {
await device.launchApp();
});

it("Should verify the address after importing an account working on a single network", async () => {
it.only("Should verify the address after importing an account working on a single network", async () => {
await portfolioPage.waitForPortfolioPageToLoad();
await portfolioPage.openTransferMenu();
await portfolioPage.navigateToDepositFromTransferMenu();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function ReceiveVerifyAddress({ navigation, route }: Props) {

sub.current = (
mainAccount.id.startsWith("mock")
? of({}).pipe(delay(1000), rejectionOp())
? of({}).pipe(delay(5000), rejectionOp())
: getAccountBridge(mainAccount).receive(mainAccount, {
deviceId: device.deviceId,
verify: true,
Expand Down

0 comments on commit 9f6692a

Please sign in to comment.