Skip to content

Commit c478da4

Browse files
fix: increase lite network timeouts
1 parent f943e12 commit c478da4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/cypress/e2e/main/basic.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { oneOf } from '@cy/support/generators'
2-
import { LOAD_TIMEOUT } from '@cy/support/ui'
2+
import { API_LOAD_TIMEOUT, LOAD_TIMEOUT } from '@cy/support/ui'
33

44
describe('Basic Access Test', () => {
55
const path = oneOf('/', '/dex')
@@ -40,7 +40,7 @@ describe('Basic Access Test', () => {
4040
cy.visitWithoutTestConnector('dex/corn/pools')
4141
cy.title(LOAD_TIMEOUT).should('equal', 'Pools - Curve')
4242
cy.url().should('include', '/dex/corn/pools')
43-
cy.contains(/LBTC\/wBTCN/i, LOAD_TIMEOUT).should('be.visible')
43+
cy.contains(/LBTC\/wBTCN/i, API_LOAD_TIMEOUT).should('be.visible')
4444
})
4545

4646
it('shows 404 on /dex/:network/pools/404', () => {

0 commit comments

Comments
 (0)