fix failing liquid asset e2e tests

This commit is contained in:
mononaut 2026-06-30 03:29:21 +00:00
parent ef36f3dd4d
commit 4e16f30492
No known key found for this signature in database
GPG key ID: BFD16BE592A9CD8D
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ describe('Liquid', () => {
it('allows searching assets', () => { it('allows searching assets', () => {
cy.visit(`${basePath}/assets`); cy.visit(`${basePath}/assets`);
cy.waitForSkeletonGone(); cy.waitForSkeletonGone();
cy.get('.container-xl input').click().type('Liquid Bitcoin').then(() => { cy.get('.container-xl input').click().type('Tether USD').then(() => {
cy.get('ngb-typeahead-window', { timeout: 30000 }).should('have.length', 1); cy.get('ngb-typeahead-window', { timeout: 30000 }).should('have.length', 1);
}); });
}); });

View file

@ -79,7 +79,7 @@ describe('Liquid Testnet', () => {
it('allows searching assets', () => { it('allows searching assets', () => {
cy.visit(`${basePath}/assets`); cy.visit(`${basePath}/assets`);
cy.waitForSkeletonGone(); cy.waitForSkeletonGone();
cy.get('.container-xl input').click().type('Liquid Bitcoin').then(() => { cy.get('.container-xl input').click().type('Tether USD').then(() => {
cy.get('ngb-typeahead-window').should('have.length', 1); cy.get('ngb-typeahead-window').should('have.length', 1);
}); });
}); });