From a88adcca17615b3b043b238caeef42feb14f87be Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 18 Aug 2016 23:58:33 +0200 Subject: [PATCH] bdd: Stop checking requests in yankpaste.feature It's not needed and only makes the test more unreliable (e.g. flaky with QtWebEngine) --- tests/end2end/features/yankpaste.feature | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/end2end/features/yankpaste.feature b/tests/end2end/features/yankpaste.feature index c738c9e26..e5f783e4f 100644 --- a/tests/end2end/features/yankpaste.feature +++ b/tests/end2end/features/yankpaste.feature @@ -50,17 +50,13 @@ Feature: Yanking and pasting. Scenario: Pasting a URL When I put "http://localhost:(port)/data/hello.txt" into the clipboard And I run :open {clipboard} - And I wait until data/hello.txt is loaded - Then the requests should be: - data/hello.txt + Then data/hello.txt should be loaded Scenario: Pasting a URL from primary selection When selection is supported And I put "http://localhost:(port)/data/hello2.txt" into the primary selection And I run :open {primary} - And I wait until data/hello2.txt is loaded - Then the requests should be: - data/hello2.txt + Then data/hello2.txt should be loaded Scenario: Pasting with empty clipboard When I put "" into the clipboard