14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
describe('Vehicle', () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1920, 1080);
|
|
cy.login('deliveryAssistant');
|
|
cy.visit(`/#/route/vehicle/7`);
|
|
});
|
|
|
|
it('should delete a vehicle', () => {
|
|
cy.openActionsDescriptor();
|
|
cy.get('[data-cy="delete"]').click();
|
|
cy.checkNotification('Vehicle removed');
|
|
});
|
|
});
|