ensdomains / ens-app

Legacy ENS manager app
https://legacy.ens.domains/
BSD 2-Clause "Simplified" License
224 stars 266 forks source link

"page with unwrapped subdomain of wrapped domain should have details in normal mode" is failing #1500

Closed makoto closed 2 years ago

makoto commented 2 years ago
  describe('page with unwrapped subdomain of wrapped domain', () => {
    it('should have details in normal mode', () => {
      cy.visit(`${NAME_ROOT}/unwrapped.wrappedname.eth/details`, {
        timeout: 10000
      })
      cy.wait(10000)

      cy.waitUntilTestIdDoesNotExist('edit-registrant')

      cy.getByTestId('edit-controller').should(
        'have.css',
        'background-color',
        'rgb(83, 132, 254)'
      )
      cy.getByTestId('edit-resolver').should(
        'have.css',
        'background-color',
        'rgb(83, 132, 254)'
      )
      cy.contains('Add/Edit Record').should('not.exist')
    })
storywithoutend commented 2 years ago

Bug in hasAResolver function. Fixed in #1503