Skip to content

Commit

Permalink
rename File to Beginner Challenge
Browse files Browse the repository at this point in the history
  • Loading branch information
Christine-Pinto committed Oct 19, 2020
1 parent f4a24fe commit 0f8e358
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Create an automated test that completes the contact us form on the homepage,
submits it, and asserts that the form was completed successfully.
*/

describe('/contactForm', () => {
describe('Beginner Challenge', () => {
beforeEach(() => {
cy.visit('/')
//Check if logo is visible to ensure the website is loaded
Expand Down Expand Up @@ -43,7 +43,7 @@ describe('/contactForm', () => {
.should('be.visible')
})

it.only('Submit a contact request', () => {
it('Submit a contact request', () => {
//Save name and subject in variables to check in the end if submit of the contact form was successfull and response message contains these the name and subject
let name = cy.faker.name.findName()
let subject = 'CypressTest '+ cy.faker.lorem.word()
Expand Down

0 comments on commit 0f8e358

Please # to comment.