diff --git a/cypress/integration/Search.feature b/cypress/integration/Search.feature index dc87b13e2..a770c757c 100644 --- a/cypress/integration/Search.feature +++ b/cypress/integration/Search.feature @@ -18,7 +18,7 @@ Feature: Search Scenario: Search for specific words When I search for "Essays" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds Then I should have one item in the select dropdown Then I should see the following posts in the select dropdown: | title | @@ -38,7 +38,7 @@ Feature: Search Scenario: Select entry goes to post When I search for "Essays" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds And I select a post entry Then I am on page "/post/p1/101-essays-that-will-change-the-way-you-think" diff --git a/cypress/integration/User.Block.feature b/cypress/integration/User.Block.feature index ada742d44..3d58c3c27 100644 --- a/cypress/integration/User.Block.feature +++ b/cypress/integration/User.Block.feature @@ -40,7 +40,7 @@ Feature: User - block an user Given "harassing-user" wrote a post "You can still see my posts" And I block the user "Harassing User" When I search for "see" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds Then I should see the following posts in the select dropdown: | title | | You can still see my posts | @@ -50,7 +50,7 @@ Feature: User - block an user And I am logged in as "harassing-user" And I navigate to page "/" And I search for "previously created" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds Then I should see the following posts in the select dropdown: | title | | previously created post | diff --git a/cypress/integration/User.Mute.feature b/cypress/integration/User.Mute.feature index 999ee40e5..1390063f7 100644 --- a/cypress/integration/User.Mute.feature +++ b/cypress/integration/User.Mute.feature @@ -33,18 +33,18 @@ Feature: Mute a User Scenario: Posts of muted users are filtered from search results, users are not Given "annoying-user" wrote a post "Spam Spam Spam" When I search for "Spam" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds Then I should see the following posts in the select dropdown: | title | | Spam Spam Spam | When I mute the user "Annoying User" And I refresh the page And I search for "Anno" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds Then the search should not contain posts by the annoying user But the search should contain the annoying user But I search for "not muted" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds Then I should see the following posts in the select dropdown: | title | | Post that should be seen | @@ -54,7 +54,7 @@ Feature: Mute a User And I am logged in as "annoying-user" And I navigate to page "/" And I search for "previously created" - And I wait for 750 milliseconds + And I wait for 3000 milliseconds Then I should see the following posts in the select dropdown: | title | | previously created post |