From 9076c419eb173320d3f17021474c292bf8e198cc Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Wed, 1 Jun 2022 00:21:24 +0200 Subject: [PATCH] test: clean upcoding interview prep intro (#46257) --- .../learn/coding-interview-prep/intro-page.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/cypress/integration/learn/coding-interview-prep/intro-page.js b/cypress/integration/learn/coding-interview-prep/intro-page.js index 2d2ff8051a2..053282df3c7 100644 --- a/cypress/integration/learn/coding-interview-prep/intro-page.js +++ b/cypress/integration/learn/coding-interview-prep/intro-page.js @@ -1,17 +1,10 @@ describe('Certification intro page', () => { - before(() => { - cy.clearCookies(); - cy.login(); - cy.visit('/learn/coding-interview-prep'); - }); - it('Should render', () => { + cy.visit('/learn/coding-interview-prep'); 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'); }); });