Skip to content

Commit a2879ee

Browse files
committed
Css Updates:
mat-tab-label -> mdc-tab mat-tab-body-active -> mat-mdc-tab-body-active mat-card-title -> mat-mdc-card-title
1 parent 8109994 commit a2879ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cypress/integration/home.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ describe('Home Page', () => {
2727

2828
it('should display the advanced courses', () => {
2929

30-
cy.get('.mat-tab-label').should("have.length", 2);
30+
cy.get('.mdc-tab').should("have.length", 2);
3131

32-
cy.get('.mat-tab-label').last().click();
32+
cy.get('.mdc-tab').last().click();
3333

34-
cy.get('.mat-tab-body-active .mat-card-title').its('length').should('be.gt', 1);
34+
cy.get('.mat-mdc-tab-body-active .mat-mdc-card-title').its('length').should('be.gt', 1);
3535

36-
cy.get('.mat-tab-body-active .mat-card-title').first()
36+
cy.get('.mat-mdc-tab-body-active .mat-mdc-card-title').first()
3737
.should('contain', "Angular Security Course");
3838

3939
});

0 commit comments

Comments
 (0)