2020-07-16 13:50:16 +00:00
|
|
|
/// <reference types="Cypress" />
|
|
|
|
/* globals cy, expect */
|
|
|
|
|
|
|
|
context('Leave Channel Browser Testing', () => {
|
|
|
|
let tableQuery = [
|
|
|
|
'solid-display.table-body',
|
|
|
|
'solid-display:last-child',
|
|
|
|
'hubl-admin-circle-leave-button',
|
|
|
|
'solid-delete'
|
|
|
|
],
|
|
|
|
tableListQuery = [
|
|
|
|
'solid-display[nested-field="circles"]',
|
|
|
|
'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('Channel Leaving process', () => {
|
2020-09-17 11:08:44 +00:00
|
|
|
it('should visit the channels list screen', () => {
|
|
|
|
cy.visit('/admin');
|
|
|
|
cy.location().should((loc) => {
|
|
|
|
expect(loc.pathname).to.eq('/admin');
|
|
|
|
});
|
|
|
|
});
|
2020-07-16 13:50:16 +00:00
|
|
|
it('should click the last channel leave button', () => {
|
|
|
|
cy.get(tableListQuery.join(' ')).its('length').as('channelsLength');
|
|
|
|
cy.get(tableQuery.join(' ')).click();
|
|
|
|
});
|
|
|
|
it('should check if chennel was left', () => {
|
|
|
|
cy.get(tableListQuery.join(' ')).its('length').should(length => {
|
|
|
|
expect(length).to.eq(this.channelsLength - 1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|