sidebar.spec.ts 286 B

1234567891011
  1. before(() => {
  2. cy.login()
  3. })
  4. describe('Sidebar', () => {
  5. it('open sidebar and go to sign in screen', () => {
  6. cy.findByLabelText(/Main menu/i).click()
  7. cy.findByRole('link', { name: /Joystream studio/i }).click()
  8. cy.findAllByLabelText(/Sign in/i).should('exist')
  9. })
  10. })