forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtablefavorites.spec.ts
47 lines (35 loc) · 1.79 KB
/
tablefavorites.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
describe('Table Favorites Test', () => {
it('Navigate to demo section', () => {
cy.visit('http://localhost:3000/table-favorites-demo-nav-link');
});
it('Check number of rows', () => {
cy.get('.pf-v5-c-table > tbody').find('tr').should('have.length', 3);
});
it('Check number of columns', () => {
cy.get('thead > tr').children().should('have.length', 7);
});
it('Test favorites button', () => {
cy.get('#favorites-button-1').parent().should('not.have.class', 'pf-m-favorited');
cy.get('#favorites-button-1').click();
cy.get('#favorites-button-1').parent().should('have.class', 'pf-m-favorited');
cy.get('#favorites-button-1').click();
cy.get('#favorites-button-1').parent().should('not.have.class', 'pf-m-favorited');
});
it('Sort favorites', () => {
// initially not sorted
cy.get('#favorites-button-0').parent().should('have.class', 'pf-m-favorited');
cy.get('#favorites-button-1').parent().should('not.have.class', 'pf-m-favorited');
cy.get('#favorites-button-2').parent().should('have.class', 'pf-m-favorited');
// click fav sort icon
cy.get('thead > tr').children().eq(1).click();
// sorted ascending (favorited items first)
cy.get('#favorites-button-0').parent().should('have.class', 'pf-m-favorited');
cy.get('#favorites-button-1').parent().should('have.class', 'pf-m-favorited');
cy.get('#favorites-button-2').parent().should('not.have.class', 'pf-m-favorited');
// sort again descending (favorited items last)
cy.get('thead > tr').children().eq(1).click();
cy.get('#favorites-button-0').parent().should('not.have.class', 'pf-m-favorited');
cy.get('#favorites-button-1').parent().should('have.class', 'pf-m-favorited');
cy.get('#favorites-button-2').parent().should('have.class', 'pf-m-favorited');
});
});