Skip to content

Commit

Permalink
fix two failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Oct 2, 2023
1 parent 7a6239e commit 6095720
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/website/cypress/e2e/courses/fundamentals-v4.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('course page', () => {
it('logo is present', () => {
cy.get('main > header > img')
.should('exist')
.should('have.attr', 'src', '/ts-fundamentals-v3.png');
.should('have.attr', 'src', '/ts-fundamentals-v4.png');
});
it('clicking on a section works', () => {
cy.get('.course-article__title')
Expand Down
2 changes: 1 addition & 1 deletion packages/website/cypress/e2e/courses/intermediate-v2.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('course page', () => {
it('logo is present', () => {
cy.get('main > header > img')
.should('exist')
.should('have.attr', 'src', '/intermediate-ts.png');
.should('have.attr', 'src', '/intermediate-ts-v2.png');
});
it('clicking on a section works', () => {
cy.get('.course-article__title')
Expand Down

0 comments on commit 6095720

Please sign in to comment.