2020-05-26 23:45:29 +02:00
|
|
|
describe('Quotes', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
cy.clientLogin();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show quotes page', () => {
|
|
|
|
cy.visit('/client/quotes');
|
|
|
|
cy.location().should(location => {
|
|
|
|
expect(location.pathname).to.eq('/client/quotes');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show quotes text', () => {
|
|
|
|
cy.visit('/client/quotes');
|
|
|
|
|
|
|
|
cy.get('body')
|
2020-06-30 14:53:30 +02:00
|
|
|
.find('span')
|
2020-05-26 23:45:29 +02:00
|
|
|
.first()
|
|
|
|
.should('contain.text', 'Quotes');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show download and approve buttons', () => {
|
|
|
|
cy.visit('/client/quotes');
|
|
|
|
|
|
|
|
cy.get('body')
|
|
|
|
.find('button[value="download"]')
|
|
|
|
.first()
|
|
|
|
.should('contain.text', 'Download');
|
|
|
|
|
|
|
|
cy.get('body')
|
|
|
|
.find('button[value="approve"]')
|
|
|
|
.first()
|
|
|
|
.should('contain.text', 'Approve');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have per page options dropdown', () => {
|
|
|
|
cy.visit('/client/quotes');
|
|
|
|
|
|
|
|
cy.get('body')
|
|
|
|
.find('select')
|
|
|
|
.first()
|
|
|
|
.should('have.value', '10');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have required table elements', () => {
|
|
|
|
cy.visit('/client/quotes');
|
|
|
|
|
|
|
|
cy.get('body')
|
|
|
|
.find('table.quotes-table > tbody > tr')
|
|
|
|
.first()
|
|
|
|
.find('.button-link')
|
|
|
|
.first()
|
|
|
|
.should('contain.text', 'View')
|
|
|
|
.click()
|
|
|
|
.location()
|
|
|
|
.should(location => {
|
|
|
|
expect(location.pathname).to.eq('/client/quotes/VolejRejNm');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should filter table content', () => {
|
|
|
|
cy.visit('/client/quotes');
|
|
|
|
|
|
|
|
cy.get('body')
|
|
|
|
.find('#draft-checkbox')
|
|
|
|
.check();
|
|
|
|
|
|
|
|
cy.get('body')
|
|
|
|
.find('table.quotes-table > tbody > tr')
|
|
|
|
.first()
|
|
|
|
.should('not.contain', 'Sent');
|
|
|
|
});
|
|
|
|
});
|