test: #6321 boilerplate tests
This commit is contained in:
parent
1367c372e3
commit
bb92d75e00
|
@ -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', () => {});
|
||||||
|
});
|
|
@ -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', () => {});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -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', () => {});
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue