Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Re-enable e2e tests for features already working in React - Closes #565 #577

Merged
merged 20 commits into from
Aug 17, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Re-enable "no transactions" e2e test
  • Loading branch information
slaweet committed Aug 15, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit bc3d0ba21c62527438d73dc6c89d7a27339ad203
1 change: 0 additions & 1 deletion features/transactions.feature
Original file line number Diff line number Diff line change
@@ -19,7 +19,6 @@ Feature: Transactions tab
And I click "submit button"
Then I should see alert dialog with title "Success" and text "Your transaction of 100 LSK to 537318935439898807L was accepted and will be processed in a few seconds."

@ignore
Scenario: should provide "No transactions" message
Given I'm logged in as "empty account"
When I click tab number 1
2 changes: 1 addition & 1 deletion src/components/transactions/transactionsComponent.js
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ class Transactions extends React.Component {
))}
</tbody>
</table> :
<p className={`${styles.empty} hasPaddingRow`}>No transactions</p>
<p className={`${styles.empty} hasPaddingRow empty-message`}>No transactions</p>
}
<Waypoint onEnter={() => { this.loadMore(); } }></Waypoint>
</div>