Skip to content

Commit a8ae5af

Browse files
committed
Increase timeout for finding table elements
1 parent 49a723b commit a8ae5af

File tree

1 file changed

+7
-7
lines changed
  • frontend/cypress/e2e/block-production/won-slots

1 file changed

+7
-7
lines changed

frontend/cypress/e2e/block-production/won-slots/table.cy.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
8484

8585
it('sort by name', () => execute(() => {
8686
cy.wait(1500)
87-
.get('mina-block-production-won-slots-table .head > span:nth-child(1)')
87+
.get('mina-block-production-won-slots-table .head > span:nth-child(1)', { timeout: 20000 })
8888
.click()
8989
.window()
9090
.its('store')
@@ -98,7 +98,7 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
9898

9999
it('sort by height', () => execute(() => {
100100
cy.wait(1500)
101-
.get('mina-block-production-won-slots-table .head > span:nth-child(1)')
101+
.get('mina-block-production-won-slots-table .head > span:nth-child(1)', { timeout: 20000 })
102102
.click()
103103
.window()
104104
.its('store')
@@ -112,7 +112,7 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
112112

113113
it('sort by global slot', () => execute(() => {
114114
cy.wait(1500)
115-
.get('mina-block-production-won-slots-table .head > span:nth-child(1)')
115+
.get('mina-block-production-won-slots-table .head > span:nth-child(1)', { timeout: 20000 })
116116
.click()
117117
.window()
118118
.its('store')
@@ -126,7 +126,7 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
126126

127127
it('sort by transactions', () => execute(() => {
128128
cy.wait(1500)
129-
.get('mina-block-production-won-slots-table .head > span:nth-child(1)')
129+
.get('mina-block-production-won-slots-table .head > span:nth-child(1)', { timeout: 20000 })
130130
.click()
131131
.window()
132132
.its('store')
@@ -140,7 +140,7 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
140140

141141
it('sort by snark fees', () => execute(() => {
142142
cy.wait(1500)
143-
.get('mina-block-production-won-slots-table .head > span:nth-child(1)')
143+
.get('mina-block-production-won-slots-table .head > span:nth-child(1)', { timeout: 20000 })
144144
.click()
145145
.window()
146146
.its('store')
@@ -154,7 +154,7 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
154154

155155
it('sort by snark coinbase rewards', () => execute(() => {
156156
cy.wait(1500)
157-
.get('mina-block-production-won-slots-table .head > span:nth-child(1)')
157+
.get('mina-block-production-won-slots-table .head > span:nth-child(1)', { timeout: 20000 })
158158
.click()
159159
.window()
160160
.its('store')
@@ -168,7 +168,7 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
168168

169169
it('sort by snark tx fees rewards', () => execute(() => {
170170
cy.wait(1500)
171-
.get('mina-block-production-won-slots-table .head > span:nth-child(1)')
171+
.get('mina-block-production-won-slots-table .head > span:nth-child(1)', { timeout: 20000 })
172172
.click()
173173
.window()
174174
.its('store')

0 commit comments

Comments
 (0)