366f4d98ef
* fix: remove unused feature flags * fix: remove flag from tests * fix: tests * fix: remove useUniswapX param
29 lines
944 B
TypeScript
29 lines
944 B
TypeScript
import { getTestSelector } from '../utils'
|
|
|
|
describe('Buy Crypto Modal', () => {
|
|
it('should open and close', () => {
|
|
cy.visit('/')
|
|
|
|
// Open the fiat onramp modal
|
|
cy.get(getTestSelector('buy-fiat-button')).click()
|
|
cy.get(getTestSelector('fiat-onramp-modal')).should('be.visible')
|
|
|
|
// Click on a location that should be outside the modal, which should close it
|
|
cy.get('body').click(0, 100)
|
|
cy.get(getTestSelector('fiat-onramp-modal')).should('not.exist')
|
|
})
|
|
|
|
it('should open and close, mobile viewport', () => {
|
|
cy.viewport('iphone-6')
|
|
cy.visit('/')
|
|
|
|
// Open the fiat onramp modal
|
|
cy.get(getTestSelector('buy-fiat-button')).click()
|
|
cy.get(getTestSelector('fiat-onramp-modal')).should('be.visible')
|
|
|
|
// Click on a location that should be outside the modal, which should close it
|
|
cy.get('body').click(10, 10)
|
|
cy.get(getTestSelector('fiat-onramp-modal')).should('not.exist')
|
|
})
|
|
})
|