/// /* globals cy, expect */ context('Leave Project Browser Testing', () => { let tableQuery = [ 'solid-display.table-body', 'solid-display:last-child', 'orbit-admin-project-leave-button', 'solid-delete' ], tableListQuery = [ 'solid-display[nested-field="projects"]', 'div >', 'solid-display' ]; before(() => { cy.clearLocalStorageSnapshot(); cy.clearLocalStorage({ domain: null }); cy.clearCookies({ domain: null }); }); beforeEach(() => cy.restoreLocalStorage()); afterEach(() => cy.saveLocalStorage()); it('should visit user login screend', () => cy.userLogin()); it('should login', () => cy.login()); describe('Project Leaving process', () => { it('should visit the projects list screen', () => { cy.visit('/admin-projects'); cy.location().should((loc) => { expect(loc.pathname).to.eq('/admin-projects'); }); }); it('should click the last project leave button', () => { cy.get(tableListQuery.join(' ')).its('length').as('projectsLength'); cy.get(tableQuery.join(' ')).click(); }); it('should check if project was left', () => { cy.get(tableListQuery.join(' ')).its('length').should(length => { expect(length).to.eq(this.projectsLength - 1); }); }); }); });