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

@ -4,7 +4,7 @@ const selectors = {
firstBlock: '.block-ui > .block:nth-child(1) > .map-title'
};
describe('Certificate intro page', () => {
describe('Certification intro page', () => {
before(() => {
cy.clearCookies();
cy.login();
@ -12,10 +12,13 @@ describe('Certificate intro page', () => {
});
it('Should render', () => {
cy.title().should('eq', 'Responsive Web Design | freeCodeCamp.org');
cy.title().should(
'eq',
'Responsive Web Design Certification | freeCodeCamp.org'
);
});
it('Should have certificate intro text', () => {
it('Should have certification intro text', () => {
cy.contains(
"In this Responsive Web Design Certification, you'll learn the languages that developers use to build webpages"
).should('be.visible');