diff --git a/cypress/integration/Admin.TagOverview.feature b/cypress/integration/Admin.TagOverview.feature index 109390111..fcec638ec 100644 --- a/cypress/integration/Admin.TagOverview.feature +++ b/cypress/integration/Admin.TagOverview.feature @@ -9,6 +9,7 @@ Feature: Admin tag overview | admin | admin@example.org | 1234 | admin | Admin-Man | admin | 0.0.4 | | u1 | u1@example.org | 1234 | u1 | User1 | user | 0.0.4 | | u2 | u2@example.org | 1234 | u2 | User2 | user | 0.0.4 | + | u3 | u3@example.org | 1234 | u3 | User3 | user | 0.0.4 | And the following "tags" are in the database: | id | | Ecology | @@ -17,14 +18,14 @@ Feature: Admin tag overview And the following "posts" are in the database: | id | title | authorId | tagIds | | p1 | P1 from U1 | u1 | Nature, Democracy | - | p2 | P2 from U1 | u1 | Ecology, Democracy | - | p3 | P3 from U2 | u2 | Nature, Democracy | + | p2 | P2 from U2 | u2 | Ecology, Democracy | + | p3 | P3 from U3 | u3 | Nature, Democracy | And I am logged in as "admin" Scenario: See an overview of tags When I navigate to page "/admin/hashtags" Then I can see the following table: | No. | Hashtags | Users | Posts | - | 1 | #Nature | 2 | 2 | - | 2 | #Democracy | 2 | 3 | + | 1 | #Democracy | 3 | 3 | + | 2 | #Nature | 2 | 2 | | 3 | #Ecology | 1 | 1 | \ No newline at end of file