test: #6321 boilerplate tests

This commit is contained in:
Javier Segarra 2024-06-20 00:01:12 +02:00
parent 1367c372e3
commit bb92d75e00
3 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,11 @@
/// <reference types="cypress" />
describe('ItemProposal', () => {
beforeEach(() => {
const ticketId = 1;
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/summary`);
});
describe('Handle item proposal selected', () => {});
});

View File

@ -0,0 +1,31 @@
/// <reference types="cypress" />
describe('Ticket Lack detail', () => {
beforeEach(() => {
const ticketId = 1;
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/summary`);
});
describe('Update quantity', () => {
it('Update from popover', () => {});
it('Update from table', () => {});
});
describe('Update state', () => {
it('Update from popover', () => {});
it('Update from table', () => {});
});
describe('Ticket transfer', () => {
describe('Split ticket if ', () => {
it('Ticket has less or equal than 1 row', () => {});
it('Ticket has more than 1 row', () => {});
});
});
describe('Item proposal', () => {
describe('Replace item if', () => {
it('Quantity is less than available', () => {});
it('Quantity is equal than available', () => {});
it('Quantity is more than available', () => {});
});
});
});

View File

@ -0,0 +1,17 @@
/// <reference types="cypress" />
describe('Ticket Lack list', () => {
beforeEach(() => {
cy.login('developer');
cy.visit(`/#/ticket/negative`);
});
describe('Origin', () => {
it('check as origin reason', () => {});
});
describe('Filters', () => {});
describe('Table actions', () => {
it('Open record', () => {});
});
});