forked from verdnatura/salix-front
12 lines
271 B
JavaScript
12 lines
271 B
JavaScript
|
/// <reference types="cypress" />
|
||
|
describe('ItemProposal', () => {
|
||
|
beforeEach(() => {
|
||
|
const ticketId = 1;
|
||
|
|
||
|
cy.login('developer');
|
||
|
cy.visit(`/#/ticket/${ticketId}/summary`);
|
||
|
});
|
||
|
|
||
|
describe('Handle item proposal selected', () => {});
|
||
|
});
|