Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
owlsua committed Apr 24, 2024
1 parent 771ec98 commit edfcba1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/05-create-btc-transaction.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test('Create BTC transaction', async () => {
await page.getByRole('button', { name: 'norm' }).click()
await page.getByRole('button', { name: 'Send' }).click()

await page.waitForTimeout(2000)
await page.waitForTimeout(10000)

await expect(page.getByTestId('popup').getByText('Send to:')).toBeVisible()
await expect(
Expand Down
4 changes: 2 additions & 2 deletions tests/06-create-ml-transaction.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('Create ML transaction', async () => {
await page.click(
'li.crypto-item[data-testid="crypto-item"] h5:text("Mintlayer (Test)")',
)
await page.waitForTimeout(1000)
await page.waitForTimeout(5000)

await page.click('button.button-transaction-up')
await expect(page.locator(':text("Send to:")')).toBeVisible()
Expand All @@ -32,7 +32,7 @@ test('Create ML transaction', async () => {

await page.getByRole('button', { name: 'Send' }).click()

await page.waitForTimeout(5000)
await page.waitForTimeout(10000)

await expect(page.getByTestId('popup').getByText('Send to:')).toBeVisible()
await expect(
Expand Down
2 changes: 1 addition & 1 deletion tests/07-create-ml-delegation.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test('Create ML delegation', async () => {
await page.fill('input[placeholder="tpool..."]', senderData.POOL_ID)
await page.getByRole('button', { name: 'Create' }).click()

await page.waitForTimeout(7000)
await page.waitForTimeout(10000)

await expect(page.getByTestId('popup').getByText('Send to:')).toBeVisible()
await expect(
Expand Down

0 comments on commit edfcba1

Please sign in to comment.