Skip to content

Commit

Permalink
correct typo
Browse files Browse the repository at this point in the history
Signed-off-by: Ketul Shah <[email protected]>
  • Loading branch information
ketulsha committed Jul 5, 2023
1 parent f176de6 commit f81f1d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/apollo/test/functional/steps/login.steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Given(/^I am on the login page$/, async() => {
if (text.includes('Login to IBM Blockchain Platform'))
text.should.equal('Login to IBM Blockchain Platform');
else
text.includes('Login to Fabric Operations Console');
text.should.equal('Login to Fabric Operations Console');
});

When(/^I login with the email '(.*?)' and password '(.*?)'$/, async(email, password) => {
Expand Down Expand Up @@ -113,7 +113,7 @@ Then(/^I should be redirected to the login page again$/, async() => {
if (text.includes('Login to IBM Blockchain Platform'))
text.should.equal('Login to IBM Blockchain Platform');
else
text.includes('Login to Fabric Operations Console');
text.should.equal('Login to Fabric Operations Console');
});

Then(/^I should see a welcome modal$/, async() => {
Expand Down

0 comments on commit f81f1d2

Please sign in to comment.