hubl/cypress/integration/leave-project.spec.js

43 lines
1.3 KiB
JavaScript
Raw Normal View History

2020-07-14 14:11:54 +00:00
/// <reference types="Cypress" />
/* globals cy, expect */
context('Leave Project Browser Testing', () => {
let tableQuery = [
'solid-display.table-body',
'solid-display:last-child',
2021-06-15 11:48:49 +00:00
'orbit-admin-project-leave-button',
2020-07-14 14:11:54 +00:00
'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());
2020-07-14 14:11:54 +00:00
describe('Project Leaving process', () => {
2020-09-17 11:08:44 +00:00
it('should visit the projects list screen', () => {
cy.visit('/admin-projects');
2020-09-17 11:08:44 +00:00
cy.location().should((loc) => {
expect(loc.pathname).to.eq('/admin-projects');
2020-09-17 11:08:44 +00:00
});
});
2020-07-14 14:11:54 +00:00
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', () => {
2020-07-14 14:11:54 +00:00
cy.get(tableListQuery.join(' ')).its('length').should(length => {
expect(length).to.eq(this.projectsLength - 1);
});
});
});
});