1cfb3d8034
* feat: release new landing page * fix wallet dropdown integration tests * remove problematic/not useful tests Co-authored-by: Jordan Frankfurt <jordanwfrankfurt@gmail.com>
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
describe('Landing Page', () => {
|
|
beforeEach(() => cy.visit('/'))
|
|
it('loads swap page', () => {
|
|
cy.get('#swap-page')
|
|
cy.screenshot()
|
|
})
|
|
|
|
it('allows navigation to pool', () => {
|
|
cy.get('#pool-nav-link').click()
|
|
cy.url().should('include', '/pool')
|
|
})
|
|
})
|