#6321 - Negative ticket #158

Open
jsegarra wants to merge 197 commits from 6321_negative_tickets into dev
3 changed files with 59 additions and 0 deletions
Showing only changes of commit bb92d75e00 - Show all commits

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', () => {});
});
});