-
Notifications
You must be signed in to change notification settings - Fork 60
Re-enable e2e tests for features already working in React - Closes #507 #523
Conversation
287d9d5
to
b26c49c
Compare
a98c4d6
to
f0111e8
Compare
f0111e8
to
99e7836
Compare
<Link to={`${match.url}/transactions`}>Transactions</Link> | ||
<Link to={`${match.url}/voting`}>Voting</Link> | ||
<Link to={`${match.url}/forging`}>Forging</Link> | ||
<section className='main-tabs'> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is better to use nav tag instead of section here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. But not worth fixing because it will be replaced with <Tabs>
in #505 anyway.
features/menu.feature
Outdated
@@ -82,29 +81,25 @@ Feature: Top right menu | |||
-----END LISK SIGNED MESSAGE----- | |||
""" | |||
|
|||
@ignore | |||
Scenario: should allow to exit sign message dialog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please reflect the difference of this test with the next one in their titles
features/menu.feature
Outdated
@@ -82,29 +81,25 @@ Feature: Top right menu | |||
-----END LISK SIGNED MESSAGE----- | |||
""" | |||
|
|||
@ignore | |||
Scenario: should allow to exit sign message dialog | |||
Given I'm logged in as "any account" | |||
When I click "sign message" in main menu | |||
And I click "cancel button" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When I remove this line, I expect the test to fail, but it passes. apparently this line doesn't affect the test result.
Same goes for the next 2 scenarios testing x and cancel buttons close our sign and verify message dialogs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Vit.
Closes #507