Disable search delay in test it was breaking.

This commit is contained in:
Ryan Lanny Jenkins 2024-06-19 20:27:47 -05:00
parent adac5dfdb0
commit 352138aa4e
1 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,11 @@ def turn_on_scroll_logging(quteproc):
quteproc.turn_on_scroll_logging(no_scroll_filtering=True)
@pytest.fixture(autouse=True)
def disable_search_delay(quteproc):
quteproc.set_setting('search.delay', '0')
@bdd.then(bdd.parsers.parse("the page should be scrolled to {x} {y}"))
def check_y(request, quteproc, x, y):
data = quteproc.get_session()