0
0
Fork 0
salix-front-mindshore-fork2/test/cypress/integration/item/ItemProposal.spec.js

12 lines
271 B
JavaScript
Raw Normal View History

2024-06-19 22:01:12 +00:00
/// <reference types="cypress" />
describe('ItemProposal', () => {
beforeEach(() => {
const ticketId = 1;
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/summary`);
});
describe('Handle item proposal selected', () => {});
});