Skip to content
Snippets Groups Projects
Unverified Commit 8827169b authored by DJ Mountney's avatar DJ Mountney Committed by GitHub
Browse files

Fix flaky transfer e2e test (#2434)

* Fix flaky transfer e2e test

- If tests ran too fast, the transactions wouldn't finish rendering
  before the select of the transactions was attempted.

* Add release note
parent 90eaf2ba
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,8 @@ test.describe('Accounts', () => {
credit: '34.56',
});
await page.waitForTimeout(100); // Give time for the previous transaction to be rendered
await accountPage.selectNthTransaction(0);
await accountPage.selectNthTransaction(1);
await accountPage.clickSelectAction('Make transfer');
......
---
category: Bugfix
authors: [twk3]
---
Fix flaky transfer e2e test.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment