Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
Signup: update test cases as the premium flow changes (#1616)
Browse files Browse the repository at this point in the history
  • Loading branch information
taggon authored Nov 15, 2018
1 parent 2b2a6f9 commit e5c9f39
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions specs/wp-signup-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,15 @@ describe( `[${ host }] Sign Up (${ screenSize }, ${ locale })`, function() {
);
} );

step( 'Can see the account details page and enter account details', async function() {
const createYourAccountPage = await CreateYourAccountPage.Expect( driver );
return await createYourAccountPage.enterAccountDetailsAndSubmit(
emailAddress,
blogName,
passwordForTestAccounts
);
} );

step( 'Can see the about page and accept defaults', async function() {
const aboutPage = await AboutPage.Expect( driver );
return await aboutPage.submitForm();
Expand All @@ -563,15 +572,6 @@ describe( `[${ host }] Sign Up (${ screenSize }, ${ locale })`, function() {
}
);

step( 'Can see the account details page and enter account details', async function() {
const createYourAccountPage = await CreateYourAccountPage.Expect( driver );
return await createYourAccountPage.enterAccountDetailsAndSubmit(
emailAddress,
blogName,
passwordForTestAccounts
);
} );

step(
'Can then see the sign up processing page which will finish automatically move along',
async function() {
Expand Down

0 comments on commit e5c9f39

Please sign in to comment.