2020-05-26 23:45:29 +02:00
|
|
|
describe('Credits', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
cy.clientLogin();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show credits page', () => {
|
|
|
|
cy.visit('/client/credits');
|
|
|
|
cy.location().should(location => {
|
|
|
|
expect(location.pathname).to.eq('/client/credits');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show credits text', () => {
|
|
|
|
cy.visit('/client/credits');
|
|
|
|
|
|
|
|
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', 'Credits');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have required table elements', () => {
|
|
|
|
cy.visit('/client/credits');
|
|
|
|
|
|
|
|
cy.get('body')
|
|
|
|
.find('table.credits-table > tbody > tr')
|
|
|
|
.first()
|
|
|
|
.find('a')
|
|
|
|
.first()
|
|
|
|
.should('contain.text', 'View')
|
|
|
|
.click()
|
|
|
|
.location()
|
|
|
|
.should(location => {
|
|
|
|
expect(location.pathname).to.eq('/client/credits/VolejRejNm');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|