11 lines
366 B
JavaScript
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 () => {});
|
|
});
|