3f3f16c366
* Revert "fix: use localStorage for Fiat announcement (#5750)" This reverts commit 62361647e060ceb1b893ad78526f2aa9d1e8e6e5. * fix: when a user dismisses the FoR banner, never show it again * pr feedback * fix some weird nft e2e test issues
12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
import { getTestSelector } from '../utils'
|
|
|
|
describe('Pool', () => {
|
|
beforeEach(() => cy.visit('/pool'))
|
|
|
|
it('add liquidity links to /add/ETH', () => {
|
|
cy.get(getTestSelector('FiatOnrampAnnouncement-close')).first().click()
|
|
cy.get('#join-pool-button').click()
|
|
cy.url().should('contain', '/add/ETH')
|
|
})
|
|
})
|