salix-front/test/cypress/integration/zone/02_descriptor.spec.js

11 lines
366 B
JavaScript

describe('Zone descriptor path', () => {
beforeEach(() => {
const zoneId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/zone/${zoneId}`);
});
it('should eliminate the zone using the descriptor option', async () => {});
it('should search for the deleted zone to find no results', async () => {});
});