32 lines
1001 B
JavaScript
32 lines
1001 B
JavaScript
/// <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', () => {});
|
|
});
|
|
});
|
|
});
|