2024-11-26 11:24:02 +00:00
|
|
|
/// <reference types="cypress" />
|
2024-11-28 12:00:53 +00:00
|
|
|
describe('InvoiceOut negative bases', () => {
|
2024-11-26 11:24:02 +00:00
|
|
|
beforeEach(() => {
|
|
|
|
cy.viewport(1920, 1080);
|
|
|
|
cy.login('developer');
|
|
|
|
cy.visit(`/#/invoice-out/negative-bases`);
|
|
|
|
});
|
|
|
|
|
2025-02-10 15:05:01 +00:00
|
|
|
it('should filter and download as CSV', () => {
|
2025-02-04 13:10:00 +00:00
|
|
|
cy.get('input[name="ticketFk"]').type('23{enter}');
|
2024-11-26 11:24:02 +00:00
|
|
|
cy.get('#subToolbar > .q-btn').click();
|
2024-12-16 06:46:36 +00:00
|
|
|
cy.checkNotification('CSV downloaded successfully');
|
2024-11-26 11:24:02 +00:00
|
|
|
});
|
|
|
|
});
|