-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathtablefavorites.spec.ts
81 lines (69 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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-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');
});
});