feat: update titles for certification pages (#42252)

* feat: update titles for certification pages

* fix: update titles in Cypress tests

* fix: change "certificate" to "certification" in intro-page.js test file

* fix: prevent adding "Certification" to title for interview prep, make variable name more clear

* feat: add test for coding interview prep page title
This commit is contained in:
Kristofer Koishigawa
2021-06-04 19:04:02 +09:00
committed by GitHub
parent fa594cf7f5
commit e82f5f4425
4 changed files with 36 additions and 5 deletions

View File

@ -0,0 +1,19 @@
/* global cy */
describe('Certification intro page', () => {
before(() => {
cy.clearCookies();
cy.login();
cy.visit('/learn/coding-interview-prep');
});
it('Should render', () => {
cy.contains(
"If you're looking for free coding exercises to prepare for your next job interview, we've got you covered."
).should('be.visible');
});
it('Title should not include the word "Certification"', () => {
cy.title().should('eq', 'Coding Interview Prep | freeCodeCamp.org');
});
});