forked from verdnatura/salix-front
29 lines
931 B
JavaScript
29 lines
931 B
JavaScript
/// <reference types="cypress" />
|
|
describe('InvoiceInList', () => {
|
|
const firstCard = '.q-card:nth-child(1)';
|
|
const firstId =
|
|
'.q-card:nth-child(1) .list-items > .vn-label-value:first-child > .value > span';
|
|
const firstDetailBtn = '.q-card:nth-child(1) .q-btn:nth-child(2)';
|
|
const summaryHeaders = '.summaryBody .header';
|
|
|
|
beforeEach(() => {
|
|
cy.login('developer');
|
|
cy.visit(`/#/invoice-in`);
|
|
});
|
|
|
|
it('should redirect on clicking a invoice', () => {
|
|
cy.get(firstId)
|
|
.invoke('text')
|
|
.then((id) => {
|
|
cy.get(firstCard).click();
|
|
cy.url().should('include', `/invoice-in/${id}/summary`);
|
|
});
|
|
});
|
|
|
|
it('should open the details', () => {
|
|
cy.get(firstDetailBtn).click();
|
|
cy.get(summaryHeaders).eq(1).contains('Basic data');
|
|
cy.get(summaryHeaders).eq(4).contains('Vat');
|
|
});
|
|
});
|