e5591e8f06
* fix: re-initialize wc connector with active chain * test(e2e): fix universal-search flake
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
describe('Universal search bar', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/')
|
|
cy.get('[data-cy="magnifying-icon"]').parent().eq(1).click()
|
|
})
|
|
|
|
it('should yield clickable result for regular token or nft collection search term', () => {
|
|
// Search for uni token by name.
|
|
cy.get('[data-cy="search-bar-input"]').last().clear().type('uni')
|
|
cy.get('[data-cy="searchbar-token-row-UNI"]')
|
|
.should('contain.text', 'Uniswap')
|
|
.and('contain.text', 'UNI')
|
|
.and('contain.text', '$')
|
|
.and('contain.text', '%')
|
|
cy.get('[data-cy="searchbar-token-row-UNI"]').first().click()
|
|
cy.location('hash').should('equal', '#/tokens/ethereum/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984')
|
|
})
|
|
|
|
it.skip('should show recent tokens and popular tokens with empty search term', () => {
|
|
cy.get('[data-cy="magnifying-icon"]')
|
|
.parent()
|
|
.then(($navIcon) => {
|
|
$navIcon.click()
|
|
})
|
|
// Recently searched UNI token should exist.
|
|
cy.get('[data-cy="search-bar-input"]').last().clear()
|
|
cy.get('[data-cy="searchbar-dropdown"]')
|
|
.contains('[data-cy="searchbar-dropdown"]', 'Recent searches')
|
|
.find('[data-cy="searchbar-token-row-UNI"]')
|
|
.should('exist')
|
|
|
|
// Most popular 3 tokens should be shown.
|
|
cy.get('[data-cy="searchbar-dropdown"]')
|
|
.contains('[data-cy="searchbar-dropdown"]', 'Popular tokens')
|
|
.find('[data-cy^="searchbar-token-row"]')
|
|
.its('length')
|
|
.should('be.eq', 3)
|
|
})
|
|
|
|
it.skip('should show blocked badge when blocked token is searched for', () => {
|
|
// Search for mTSLA, which is a blocked token.
|
|
cy.get('[data-cy="search-bar-input"]').last().clear().type('mtsla')
|
|
cy.get('[data-cy="searchbar-token-row-mTSLA"]').find('[data-cy="blocked-icon"]').should('exist')
|
|
})
|
|
})
|