blob: 6e4e508008b401b20f433f2af785345400d298ff [file] [log] [blame]
/// <reference types="cypress" />
Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from
// failing the test
return false
})
describe('Testing visibility of devtools option', () => {
beforeEach(() => {
cy.visit('/')
})
it('check if devtools option gets visible', () => {
cy.setZclProperties()
cy.get('#Settings').click()
cy.get('[aria-label="Enable development tools"] > .q-toggle__label').click()
cy.get('.q-drawer-container').should('contain', 'Developer Tools')
})
})