From bb611fdc2d7c5af6870f1b42a57f6e7942c5cc85 Mon Sep 17 00:00:00 2001 From: michaeltomasik Date: Tue, 20 Mar 2018 08:57:27 +0100 Subject: [PATCH 1/2] Fix see all transactions --- src/components/dashboard/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/index.js b/src/components/dashboard/index.js index c7ddd4e6e7..26a789f270 100644 --- a/src/components/dashboard/index.js +++ b/src/components/dashboard/index.js @@ -23,7 +23,7 @@ class Dashboard extends React.Component {

{t('Latest activity')} - + {t('See all transactions')} From fa280d110fcf85b0512b7c7e5fe13e572c91ebdb Mon Sep 17 00:00:00 2001 From: michaeltomasik Date: Wed, 21 Mar 2018 14:51:02 +0100 Subject: [PATCH 2/2] :white_check_mark: Add open all transactions e2e test --- src/components/dashboard/index.js | 2 +- test/e2e/transactions.feature | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/components/dashboard/index.js b/src/components/dashboard/index.js index 26a789f270..e254f4f795 100644 --- a/src/components/dashboard/index.js +++ b/src/components/dashboard/index.js @@ -23,7 +23,7 @@ class Dashboard extends React.Component {

{t('Latest activity')} - + {t('See all transactions')} diff --git a/test/e2e/transactions.feature b/test/e2e/transactions.feature index 7bd77b2b63..e5acef30eb 100644 --- a/test/e2e/transactions.feature +++ b/test/e2e/transactions.feature @@ -5,6 +5,14 @@ Feature: Transactions page Then I should see 25 rows When I scroll to the bottom of "transaction results" Then I should see 50 rows + + Scenario: should open all transactions + Given I'm logged in as "genesis" + When I click "dashboard" menu + And I should see 3 rows + When I click "seeAllLink" + Then I should be on url "/main/transactions" + And I should see 25 rows @integration Scenario: should provide a message if there are "No transactions"