bdd: Stop checking requests in yankpaste.feature

It's not needed and only makes the test more unreliable (e.g. flaky with
QtWebEngine)
This commit is contained in:
Florian Bruhin 2016-08-18 23:58:33 +02:00
parent 044b3df872
commit a88adcca17

View File

@ -50,17 +50,13 @@ Feature: Yanking and pasting.
Scenario: Pasting a URL Scenario: Pasting a URL
When I put "http://localhost:(port)/data/hello.txt" into the clipboard When I put "http://localhost:(port)/data/hello.txt" into the clipboard
And I run :open {clipboard} And I run :open {clipboard}
And I wait until data/hello.txt is loaded Then data/hello.txt should be loaded
Then the requests should be:
data/hello.txt
Scenario: Pasting a URL from primary selection Scenario: Pasting a URL from primary selection
When selection is supported When selection is supported
And I put "http://localhost:(port)/data/hello2.txt" into the primary selection And I put "http://localhost:(port)/data/hello2.txt" into the primary selection
And I run :open {primary} And I run :open {primary}
And I wait until data/hello2.txt is loaded Then data/hello2.txt should be loaded
Then the requests should be:
data/hello2.txt
Scenario: Pasting with empty clipboard Scenario: Pasting with empty clipboard
When I put "" into the clipboard When I put "" into the clipboard